OLD | NEW |
| (Empty) |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 <!-- Copyright 2015 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 | |
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
7 android:layout_width="match_parent" | |
8 android:layout_height="match_parent" | |
9 android:minHeight="@dimen/enhanced_bookmark_minimum_dialog_size_tablet" | |
10 android:orientation="vertical" > | |
11 | |
12 <android.support.v7.widget.Toolbar | |
13 android:id="@+id/toolbar" | |
14 android:layout_width="match_parent" | |
15 android:layout_height="?attr/actionBarSize" | |
16 android:background="?attr/colorPrimary" /> | |
17 | |
18 <View | |
19 android:layout_width="match_parent" | |
20 android:layout_height="4dp" | |
21 android:layout_marginBottom="-4dp" | |
22 android:background="@drawable/eb_title_bar_shadow" /> | |
23 | |
24 <ListView | |
25 android:id="@+id/eb_folder_list" | |
26 android:layout_width="match_parent" | |
27 android:layout_height="match_parent" | |
28 android:paddingBottom="8dp" | |
29 android:paddingTop="8dp" | |
30 android:clipToPadding="false" | |
31 android:divider="@null" | |
32 android:dividerHeight="0dp" /> | |
33 | |
34 </LinearLayout> | |
OLD | NEW |