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 xmlns:tools="http://schemas.android.com/tools" |
| 7 android:orientation="horizontal" |
| 8 android:layout_width="match_parent" |
| 9 android:layout_height="wrap_content" |
| 10 android:paddingStart="15dp" |
| 11 android:paddingEnd="15dp" |
| 12 android:minHeight="40dp" |
| 13 tools:ignore="UseCompoundDrawables"> |
| 14 <ImageView |
| 15 android:id="@+id/context_menu_icon" |
| 16 android:layout_width="20dp" |
| 17 android:layout_height="20dp" |
| 18 android:layout_gravity="center_vertical" |
| 19 android:contentDescription="@null" /> |
| 20 <TextView |
| 21 android:id="@+id/context_text" |
| 22 android:layout_width="0dp" |
| 23 android:layout_height="wrap_content" |
| 24 android:layout_gravity="center_vertical" |
| 25 android:layout_marginStart="10dp" |
| 26 android:layout_weight="1" |
| 27 android:textSize="15sp" |
| 28 android:textColor="#dd000000" /> |
| 29 </LinearLayout> |
OLD | NEW |