OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. | |
3 Use of this source code is governed by a BSD-style license that can be | |
4 found in the LICENSE file. --> | |
5 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
6 android:orientation="horizontal" | |
7 android:layout_width="match_parent" | |
8 android:layout_height="wrap_content" | |
9 android:paddingStart="15dp" | |
10 android:paddingEnd="15dp" | |
11 android:minHeight="40dp"> | |
12 <ImageView | |
13 android:id="@+id/context_menu_icon" | |
14 android:layout_width="20dp" | |
15 android:layout_height="20dp" | |
16 android:layout_gravity="center_vertical" | |
17 android:contentDescription="@string/context_menu_row_icon_description" / > | |
Ted C
2017/03/28 17:31:43
I think this should be @null here
JJ
2017/03/28 21:16:12
Done.
| |
18 <TextView | |
19 android:id="@+id/context_text" | |
20 android:layout_width="0dp" | |
21 android:layout_height="wrap_content" | |
22 android:layout_gravity="center_vertical" | |
23 android:layout_marginStart="10dp" | |
24 android:layout_weight="1" | |
25 android:textSize="15sp" | |
26 android:textColor="#dd000000"/> | |
27 <ImageView | |
Ted C
2017/03/28 17:31:44
should we remove this for now?
JJ
2017/03/28 21:16:12
Done.
| |
28 android:id="@+id/context_menu_share_icon" | |
29 android:layout_width="20dp" | |
30 android:layout_height="20dp" | |
31 android:layout_gravity="center_vertical" | |
32 android:contentDescription="@null" | |
33 android:visibility="gone"/> | |
34 </LinearLayout> | |
OLD | NEW |