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

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

Issue 1694093003: Rename EnhancedBookmarks to Bookmarks, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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
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 <merge xmlns:android="http://schemas.android.com/apk/res/android"> 6 <merge xmlns:android="http://schemas.android.com/apk/res/android">
7 7
8 <android.support.v7.widget.Toolbar 8 <android.support.v7.widget.Toolbar
9 android:id="@+id/search_bar" 9 android:id="@+id/search_bar"
10 android:layout_width="match_parent" 10 android:layout_width="match_parent"
11 android:layout_height="?attr/actionBarSize" > 11 android:layout_height="?attr/actionBarSize" >
12 12
13 <EditText 13 <EditText
14 android:id="@+id/eb_search_text" 14 android:id="@+id/bookmark_search_text"
15 android:layout_width="match_parent" 15 android:layout_width="match_parent"
16 android:layout_height="match_parent" 16 android:layout_height="match_parent"
17 android:background="@null" 17 android:background="@null"
18 android:gravity="center_vertical" 18 android:gravity="center_vertical"
19 android:hint="@string/enhanced_bookmark_action_bar_search" 19 android:hint="@string/bookmark_action_bar_search"
20 android:imeOptions="flagNoExtractUi|actionSearch" 20 android:imeOptions="flagNoExtractUi|actionSearch"
21 android:inputType="textNoSuggestions" 21 android:inputType="textNoSuggestions"
22 android:singleLine="true" 22 android:singleLine="true"
23 android:textColor="#343434" 23 android:textColor="#343434"
24 android:textSize="20sp" /> 24 android:textSize="20sp" />
25 </android.support.v7.widget.Toolbar> 25 </android.support.v7.widget.Toolbar>
26 26
27 <View 27 <View
28 android:layout_width="match_parent" 28 android:layout_width="match_parent"
29 android:layout_height="1dp" 29 android:layout_height="1dp"
30 android:background="#E1E1E1" /> 30 android:background="#E1E1E1" />
31 31
32 <view class="org.chromium.chrome.browser.bookmarks.BookmarkSearchView$Histor yResultSwitcher" 32 <view class="org.chromium.chrome.browser.bookmarks.BookmarkSearchView$Histor yResultSwitcher"
33 android:id="@+id/history_result_switcher" 33 android:id="@+id/history_result_switcher"
34 android:layout_width="match_parent" 34 android:layout_width="match_parent"
35 android:layout_height="match_parent" 35 android:layout_height="match_parent"
36 android:inAnimation="@android:anim/fade_in" 36 android:inAnimation="@android:anim/fade_in"
37 android:outAnimation="@android:anim/fade_out" > 37 android:outAnimation="@android:anim/fade_out" >
38 38
39 <ListView 39 <ListView
40 android:id="@+id/eb_history_list" 40 android:id="@+id/bookmark_history_list"
41 android:layout_width="match_parent" 41 android:layout_width="match_parent"
42 android:layout_height="match_parent" 42 android:layout_height="match_parent"
43 android:divider="@null" 43 android:divider="@null"
44 android:dividerHeight="0dp" /> 44 android:dividerHeight="0dp" />
45 45
46 <ViewSwitcher 46 <ViewSwitcher
47 android:id="@+id/result_empty_switcher" 47 android:id="@+id/result_empty_switcher"
48 android:layout_width="match_parent" 48 android:layout_width="match_parent"
49 android:layout_height="match_parent" 49 android:layout_height="match_parent"
50 android:inAnimation="@android:anim/fade_in" 50 android:inAnimation="@android:anim/fade_in"
51 android:outAnimation="@android:anim/fade_out" > 51 android:outAnimation="@android:anim/fade_out" >
52 52
53 <ListView 53 <ListView
54 android:id="@+id/eb_result_list" 54 android:id="@+id/bookmark_result_list"
55 android:layout_width="match_parent" 55 android:layout_width="match_parent"
56 android:layout_height="match_parent" 56 android:layout_height="match_parent"
57 android:divider="@null" 57 android:divider="@null"
58 android:dividerHeight="0dp" /> 58 android:dividerHeight="0dp" />
59 59
60 <TextView 60 <TextView
61 android:id="@+id/eb_search_empty_view" 61 android:id="@+id/bookmark_search_empty_view"
62 android:layout_width="wrap_content" 62 android:layout_width="wrap_content"
63 android:layout_height="wrap_content" 63 android:layout_height="wrap_content"
64 android:layout_gravity="center" 64 android:layout_gravity="center"
65 android:drawablePadding="3dp" 65 android:drawablePadding="3dp"
66 android:drawableTop="@drawable/eb_logo_large" 66 android:drawableTop="@drawable/bookmark_logo_large"
67 android:gravity="center" 67 android:gravity="center"
68 android:padding="16dp" 68 android:padding="16dp"
69 android:text="@string/enhanced_bookmark_no_result" 69 android:text="@string/bookmark_no_result"
70 android:textColor="#5B5B5B" 70 android:textColor="#5B5B5B"
71 android:textSize="16sp" /> 71 android:textSize="16sp" />
72 </ViewSwitcher> 72 </ViewSwitcher>
73 </view> 73 </view>
74 74
75 </merge> 75 </merge>
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/bookmark_search.xml ('k') | chrome/android/java/res/layout/bookmark_search_row.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698