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