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" android:layout_width="match_parent" | |
David Trainor- moved to gerrit
2017/03/21 16:30:02
new line for width?
JJ
2017/03/22 23:35:31
Done.
| |
7 android:layout_height="wrap_content" | |
8 android:paddingStart="15dp" | |
9 android:paddingEnd="15dp" | |
10 android:minHeight="40dp"> | |
11 <ImageView | |
12 android:id="@+id/context_menu_icon" | |
13 android:layout_width="20dp" | |
14 android:layout_height="20dp" | |
15 android:layout_gravity="center_vertical" | |
16 android:contentDescription="@string/context_menu_row_icon_description" / > | |
17 <TextView | |
18 android:id="@+id/context_text" | |
19 android:layout_width="0dp" | |
20 android:layout_height="wrap_content" | |
21 android:layout_gravity="center_vertical" | |
22 android:layout_marginStart="10dp" | |
23 android:layout_weight="1" | |
24 android:textSize="15sp" | |
25 android:textColor="#dd000000"/> | |
26 <ImageView | |
27 android:id="@+id/context_menu_share_icon" | |
28 android:layout_width="20dp" | |
29 android:layout_height="20dp" | |
30 android:layout_gravity="center_vertical" | |
31 android:contentDescription="@string/context_menu_row_share_icon_descript ion" | |
32 android:visibility="gone"/> | |
33 </LinearLayout> | |
OLD | NEW |