Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: chrome/android/java_staging/res/layout/eb_main_content.xml

Issue 1141283003: Upstream oodles of Chrome for Android code into Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final patch? Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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.enhancedbookmarks.EnhancedBookmarkContentView
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.enhancedbookmarks.EnhancedBookmarkRecyclerView
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:clipToPadding="false"
19 android:scrollbars="vertical"
20 android:scrollbarStyle="outsideOverlay" />
21
22 <TextView
23 android:id="@+id/eb_empty_view"
24 android:layout_width="wrap_content"
25 android:layout_height="wrap_content"
26 android:layout_centerInParent="true"
27 android:drawablePadding="3dp"
28 android:drawableTop="@drawable/eb_logo_large"
29 android:gravity="center"
30 android:padding="16dp"
31 android:text="@string/bookmarks_folder_empty"
32 android:textColor="#5B5B5B"
33 android:textSize="16sp"
34 android:visibility="gone" />
35
36 <org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkLoadingView
37 android:id="@+id/eb_initial_loading_view"
38 android:layout_width="match_parent"
39 android:layout_height="match_parent"
40 android:background="#f2f2f2"
41 android:visibility="gone" >
42
43 <ProgressBar
44 android:id="@+id/eb_loading_circle"
45 android:layout_width="wrap_content"
46 android:layout_height="wrap_content"
47 android:layout_gravity="center"
48 android:layout_centerInParent="true"
49 android:visibility="gone" />
50 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkLoadingView>
51
52 <org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkActionBar
53 android:id="@id/eb_action_bar"
54 android:layout_width="match_parent"
55 android:layout_height="?attr/actionBarSize"
56 android:layout_alignParentTop="true" >
57
58 <org.chromium.chrome.browser.widget.NumberRollView
59 android:id="@+id/selection_mode_number"
60 android:layout_width="wrap_content"
61 android:layout_height="match_parent"
62 android:visibility="gone" >
63
64 <TextView
65 android:id="@+id/up"
66 android:layout_width="wrap_content"
67 android:layout_height="wrap_content"
68 android:layout_gravity="center_vertical"
69 android:singleLine="true"
70 android:textColor="@android:color/white"
71 android:textSize="20sp" />
72
73 <TextView
74 android:id="@+id/down"
75 android:layout_width="wrap_content"
76 android:layout_height="wrap_content"
77 android:layout_gravity="center_vertical"
78 android:singleLine="true"
79 android:textColor="@android:color/white"
80 android:textSize="20sp" />
81 </org.chromium.chrome.browser.widget.NumberRollView>
82 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkActionBar>
83
84 <org.chromium.chrome.browser.widget.FadingShadowView
85 android:id="@+id/shadow"
86 android:layout_width="match_parent"
87 android:layout_height="10dp"
88 android:layout_below="@id/eb_action_bar" />
89 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkContentView>
OLDNEW
« no previous file with comments | « chrome/android/java_staging/res/layout/eb_main.xml ('k') | chrome/android/java_staging/res/layout/eb_popup_item.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698