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 <org.chromium.chrome.browser.bookmarks.BookmarkContentView | 6 <org.chromium.chrome.browser.bookmarks.BookmarkContentView |
7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 xmlns:android="http://schemas.android.com/apk/res/android" |
8 android:id="@+id/eb_content_view" | 8 android:id="@+id/bookmark_content_view" |
9 android:layout_width="match_parent" | 9 android:layout_width="match_parent" |
10 android:layout_height="match_parent" > | 10 android:layout_height="match_parent" > |
11 | 11 |
12 <org.chromium.chrome.browser.bookmarks.BookmarkRecyclerView | 12 <org.chromium.chrome.browser.bookmarks.BookmarkRecyclerView |
13 android:id="@+id/eb_items_container" | 13 android:id="@+id/bookmark_items_container" |
14 android:layout_width="match_parent" | 14 android:layout_width="match_parent" |
15 android:layout_height="match_parent" | 15 android:layout_height="match_parent" |
16 android:layout_alignParentBottom="true" | 16 android:layout_alignParentBottom="true" |
17 android:layout_below="@+id/eb_action_bar" | 17 android:layout_below="@+id/bookmark_action_bar" |
18 android:background="@android:color/white" | 18 android:background="@android:color/white" |
19 android:paddingBottom="8dp" | 19 android:paddingBottom="8dp" |
20 android:paddingTop="8dp" | 20 android:paddingTop="8dp" |
21 android:clipToPadding="false" | 21 android:clipToPadding="false" |
22 android:scrollbars="vertical" | 22 android:scrollbars="vertical" |
23 android:scrollbarStyle="outsideOverlay" /> | 23 android:scrollbarStyle="outsideOverlay" /> |
24 | 24 |
25 <TextView | 25 <TextView |
26 android:id="@+id/eb_empty_view" | 26 android:id="@+id/bookmark_empty_view" |
27 android:layout_width="wrap_content" | 27 android:layout_width="wrap_content" |
28 android:layout_height="wrap_content" | 28 android:layout_height="wrap_content" |
29 android:layout_centerInParent="true" | 29 android:layout_centerInParent="true" |
30 android:drawablePadding="3dp" | 30 android:drawablePadding="3dp" |
31 android:drawableTop="@drawable/eb_logo_large" | 31 android:drawableTop="@drawable/bookmark_logo_large" |
32 android:gravity="center" | 32 android:gravity="center" |
33 android:padding="16dp" | 33 android:padding="16dp" |
34 android:textColor="#5B5B5B" | 34 android:textColor="#5B5B5B" |
35 android:textSize="16sp" | 35 android:textSize="16sp" |
36 android:visibility="gone" /> | 36 android:visibility="gone" /> |
37 | 37 |
38 <org.chromium.chrome.browser.widget.LoadingView | 38 <org.chromium.chrome.browser.widget.LoadingView |
39 android:id="@+id/eb_initial_loading_view" | 39 android:id="@+id/bookmark_initial_loading_view" |
40 android:layout_width="wrap_content" | 40 android:layout_width="wrap_content" |
41 android:layout_height="wrap_content" | 41 android:layout_height="wrap_content" |
42 android:layout_centerInParent="true" | 42 android:layout_centerInParent="true" |
43 android:visibility="gone" /> | 43 android:visibility="gone" /> |
44 | 44 |
45 <org.chromium.chrome.browser.bookmarks.BookmarkActionBar | 45 <org.chromium.chrome.browser.bookmarks.BookmarkActionBar |
46 android:id="@id/eb_action_bar" | 46 android:id="@id/bookmark_action_bar" |
47 android:layout_width="match_parent" | 47 android:layout_width="match_parent" |
48 android:layout_height="?attr/actionBarSize" | 48 android:layout_height="?attr/actionBarSize" |
49 android:layout_alignParentTop="true" | 49 android:layout_alignParentTop="true" |
50 android:background="@color/enhanced_bookmark_appbar_background" > | 50 android:background="@color/bookmark_appbar_background" > |
51 | 51 |
52 <org.chromium.chrome.browser.widget.NumberRollView | 52 <org.chromium.chrome.browser.widget.NumberRollView |
53 android:id="@+id/selection_mode_number" | 53 android:id="@+id/selection_mode_number" |
54 android:layout_width="wrap_content" | 54 android:layout_width="wrap_content" |
55 android:layout_height="match_parent" | 55 android:layout_height="match_parent" |
56 android:visibility="gone" > | 56 android:visibility="gone" > |
57 | 57 |
58 <TextView | 58 <TextView |
59 android:id="@+id/up" | 59 android:id="@+id/up" |
60 android:layout_width="wrap_content" | 60 android:layout_width="wrap_content" |
(...skipping 11 matching lines...) Expand all Loading... |
72 android:singleLine="true" | 72 android:singleLine="true" |
73 android:textColor="@android:color/white" | 73 android:textColor="@android:color/white" |
74 android:textSize="20sp" /> | 74 android:textSize="20sp" /> |
75 </org.chromium.chrome.browser.widget.NumberRollView> | 75 </org.chromium.chrome.browser.widget.NumberRollView> |
76 </org.chromium.chrome.browser.bookmarks.BookmarkActionBar> | 76 </org.chromium.chrome.browser.bookmarks.BookmarkActionBar> |
77 | 77 |
78 <org.chromium.chrome.browser.widget.FadingShadowView | 78 <org.chromium.chrome.browser.widget.FadingShadowView |
79 android:id="@+id/shadow" | 79 android:id="@+id/shadow" |
80 android:layout_width="match_parent" | 80 android:layout_width="match_parent" |
81 android:layout_height="10dp" | 81 android:layout_height="10dp" |
82 android:layout_below="@id/eb_action_bar" /> | 82 android:layout_below="@id/bookmark_action_bar" /> |
83 </org.chromium.chrome.browser.bookmarks.BookmarkContentView> | 83 </org.chromium.chrome.browser.bookmarks.BookmarkContentView> |
OLD | NEW |