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 <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" |
(...skipping 11 matching lines...) Expand all Loading... |
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.enhancedbookmarks.EnhancedBookmarkS
earchView$HistoryResultSwitcher" | 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/eb_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" |
(...skipping 23 matching lines...) Expand all Loading... |
66 android:drawableTop="@drawable/eb_logo_large" | 66 android:drawableTop="@drawable/eb_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/enhanced_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> |
OLD | NEW |