OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2014 The Chromium Authors. All rights reserved. |
4 | 4 |
5 Use of this source code is governed by a BSD-style license that can be | 5 Use of this source code is governed by a BSD-style license that can be |
6 found in the LICENSE file. | 6 found in the LICENSE file. |
7 --> | 7 --> |
8 | 8 |
9 <org.chromium.chrome.shell.TabManager android:id="@+id/tab_manager" | 9 <org.chromium.chrome.shell.TabManager android:id="@+id/tab_manager" |
10 xmlns:android="http://schemas.android.com/apk/res/android" | 10 xmlns:android="http://schemas.android.com/apk/res/android" |
(...skipping 21 matching lines...) Expand all Loading... |
32 android:layout_height="38dp" | 32 android:layout_height="38dp" |
33 android:src="@drawable/btn_close" | 33 android:src="@drawable/btn_close" |
34 android:background="?attr/selectableItemBackground" | 34 android:background="?attr/selectableItemBackground" |
35 android:scaleType="center"/> | 35 android:scaleType="center"/> |
36 <EditText android:id="@+id/url" | 36 <EditText android:id="@+id/url" |
37 android:layout_width="0dp" | 37 android:layout_width="0dp" |
38 android:layout_height="wrap_content" | 38 android:layout_height="wrap_content" |
39 android:layout_weight="1" | 39 android:layout_weight="1" |
40 android:gravity="bottom" | 40 android:gravity="bottom" |
41 android:textSize="18sp" | 41 android:textSize="18sp" |
42 android:autoText="true" | |
43 android:capitalize="sentences" | |
44 android:singleLine="true" | 42 android:singleLine="true" |
45 android:selectAllOnFocus="true" | 43 android:selectAllOnFocus="true" |
46 android:hint="@string/url_hint" | 44 android:hint="@string/url_hint" |
47 android:inputType="textUri" | 45 android:inputType="textUri" |
48 android:imeOptions="actionGo|flagNoExtractUi" /> | 46 android:imeOptions="actionGo|flagNoExtractUi" /> |
49 <org.chromium.chrome.browser.widget.TintedImageButton | 47 <org.chromium.chrome.browser.widget.TintedImageButton |
50 android:id="@+id/tab_switcher" | 48 android:id="@+id/tab_switcher" |
51 android:layout_width="38dp" | 49 android:layout_width="38dp" |
52 android:layout_height="38dp" | 50 android:layout_height="38dp" |
53 android:src="@drawable/btn_tabswitcher" | 51 android:src="@drawable/btn_tabswitcher" |
(...skipping 16 matching lines...) Expand all Loading... |
70 android:layout_height="2dp" | 68 android:layout_height="2dp" |
71 android:progress="0" /> | 69 android:progress="0" /> |
72 </org.chromium.chrome.shell.ChromeShellToolbar> | 70 </org.chromium.chrome.shell.ChromeShellToolbar> |
73 <FrameLayout android:id="@+id/content_container" | 71 <FrameLayout android:id="@+id/content_container" |
74 android:layout_width="match_parent" | 72 android:layout_width="match_parent" |
75 android:layout_height="0dp" | 73 android:layout_height="0dp" |
76 android:layout_weight="1"> | 74 android:layout_weight="1"> |
77 </FrameLayout> | 75 </FrameLayout> |
78 | 76 |
79 </org.chromium.chrome.shell.TabManager> | 77 </org.chromium.chrome.shell.TabManager> |
OLD | NEW |