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 |
| 6 xmlns:android="http://schemas.android.com/apk/res/android" |
| 7 android:id="@+id/content_layer" |
| 8 android:layout_width="match_parent" |
| 9 android:layout_height="match_parent" |
| 10 android:minWidth="280dp" |
| 11 android:orientation="vertical"> |
| 12 <TextView |
| 13 android:id="@+id/context_header_text" |
| 14 android:layout_width="match_parent" |
| 15 android:layout_height="wrap_content" |
| 16 android:layout_marginTop="20dp" |
| 17 android:layout_marginBottom="10dp" |
| 18 android:layout_marginStart="20dp" |
| 19 android:layout_marginEnd="20dp" |
| 20 android:gravity="center" |
| 21 android:maxLines="1" |
| 22 android:textSize="13sp" |
| 23 android:textStyle="bold" |
| 24 android:ellipsize="end" |
| 25 android:visibility="gone"/> |
| 26 <View |
| 27 android:id="@+id/context_divider" |
| 28 android:layout_width="match_parent" |
| 29 android:layout_height="1dp" |
| 30 android:background="#1e000000"/> |
| 31 <ListView |
| 32 android:id="@+id/selectable_items" |
| 33 android:layout_width="match_parent" |
| 34 android:layout_height="wrap_content" |
| 35 android:paddingTop="8dp" |
| 36 android:paddingBottom="8dp" |
| 37 android:dividerHeight="0dp" |
| 38 android:divider="@null"/> |
| 39 </LinearLayout> |
OLD | NEW |