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

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

Issue 1398423002: Add progressbar to animated doodle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: xml nit Created 5 years, 1 month 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
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/enhancedbookmarks/EnhancedBookmarkContentView.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.enhancedbookmarks.EnhancedBookmarkContentView 6 <org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkContentView
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/eb_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" >
(...skipping 17 matching lines...) Expand all
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/eb_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.enhancedbookmarks.EnhancedBookmarkLoadingView 38 <org.chromium.chrome.browser.widget.LoadingView
39 android:id="@+id/eb_initial_loading_view" 39 android:id="@+id/eb_initial_loading_view"
40 android:layout_width="match_parent" 40 android:layout_width="wrap_content"
41 android:layout_height="match_parent" 41 android:layout_height="wrap_content"
42 android:background="#f2f2f2" 42 android:layout_centerInParent="true"
43 android:visibility="gone" > 43 android:visibility="gone" />
44
45 <ProgressBar
46 android:id="@+id/eb_loading_circle"
47 android:layout_width="wrap_content"
48 android:layout_height="wrap_content"
49 android:layout_gravity="center"
50 android:layout_centerInParent="true"
51 android:visibility="gone" />
52 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkLoadingView>
53 44
54 <org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkActionBar 45 <org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkActionBar
55 android:id="@id/eb_action_bar" 46 android:id="@id/eb_action_bar"
56 android:layout_width="match_parent" 47 android:layout_width="match_parent"
57 android:layout_height="?attr/actionBarSize" 48 android:layout_height="?attr/actionBarSize"
58 android:layout_alignParentTop="true" > 49 android:layout_alignParentTop="true"
50 android:background="@color/enhanced_bookmark_appbar_background" >
59 51
60 <org.chromium.chrome.browser.widget.NumberRollView 52 <org.chromium.chrome.browser.widget.NumberRollView
61 android:id="@+id/selection_mode_number" 53 android:id="@+id/selection_mode_number"
62 android:layout_width="wrap_content" 54 android:layout_width="wrap_content"
63 android:layout_height="match_parent" 55 android:layout_height="match_parent"
64 android:visibility="gone" > 56 android:visibility="gone" >
65 57
66 <TextView 58 <TextView
67 android:id="@+id/up" 59 android:id="@+id/up"
68 android:layout_width="wrap_content" 60 android:layout_width="wrap_content"
(...skipping 13 matching lines...) Expand all
82 android:textSize="20sp" /> 74 android:textSize="20sp" />
83 </org.chromium.chrome.browser.widget.NumberRollView> 75 </org.chromium.chrome.browser.widget.NumberRollView>
84 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkActionBar> 76 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkActionBar>
85 77
86 <org.chromium.chrome.browser.widget.FadingShadowView 78 <org.chromium.chrome.browser.widget.FadingShadowView
87 android:id="@+id/shadow" 79 android:id="@+id/shadow"
88 android:layout_width="match_parent" 80 android:layout_width="match_parent"
89 android:layout_height="10dp" 81 android:layout_height="10dp"
90 android:layout_below="@id/eb_action_bar" /> 82 android:layout_below="@id/eb_action_bar" />
91 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkContentView> 83 </org.chromium.chrome.browser.enhancedbookmarks.EnhancedBookmarkContentView>
OLDNEW
« no previous file with comments | « no previous file | chrome/android/java/src/org/chromium/chrome/browser/enhancedbookmarks/EnhancedBookmarkContentView.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698