OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 3 Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. --> | 4 found in the LICENSE file. --> |
5 | 5 |
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
7 android:layout_width="match_parent" | 7 android:layout_width="match_parent" |
8 android:layout_height="match_parent" | 8 android:layout_height="match_parent" |
9 android:minHeight="@dimen/enhanced_bookmark_minimum_dialog_size_tablet" | 9 android:minHeight="@dimen/bookmark_minimum_dialog_size_tablet" |
10 android:orientation="vertical" > | 10 android:orientation="vertical" > |
11 | 11 |
12 <android.support.v7.widget.Toolbar | 12 <android.support.v7.widget.Toolbar |
13 android:id="@+id/toolbar" | 13 android:id="@+id/toolbar" |
14 android:layout_width="match_parent" | 14 android:layout_width="match_parent" |
15 android:layout_height="?attr/actionBarSize" | 15 android:layout_height="?attr/actionBarSize" |
16 android:background="?attr/colorPrimary" /> | 16 android:background="?attr/colorPrimary" /> |
17 | 17 |
18 <View | 18 <View |
19 android:layout_width="match_parent" | 19 android:layout_width="match_parent" |
20 android:layout_height="4dp" | 20 android:layout_height="4dp" |
21 android:layout_marginBottom="-4dp" | 21 android:layout_marginBottom="-4dp" |
22 android:background="@drawable/eb_title_bar_shadow" /> | 22 android:background="@drawable/bookmark_title_bar_shadow" /> |
23 | 23 |
24 <ListView | 24 <ListView |
25 android:id="@+id/eb_folder_list" | 25 android:id="@+id/bookmark_folder_list" |
26 android:layout_width="match_parent" | 26 android:layout_width="match_parent" |
27 android:layout_height="match_parent" | 27 android:layout_height="match_parent" |
28 android:paddingBottom="8dp" | 28 android:paddingBottom="8dp" |
29 android:paddingTop="8dp" | 29 android:paddingTop="8dp" |
30 android:clipToPadding="false" | 30 android:clipToPadding="false" |
31 android:divider="@null" | 31 android:divider="@null" |
32 android:dividerHeight="0dp" /> | 32 android:dividerHeight="0dp" /> |
33 | 33 |
34 </LinearLayout> | 34 </LinearLayout> |
OLD | NEW |