OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 <!-- | 2 <!-- |
3 Copyright 2015 The Chromium Authors. All rights reserved. | 3 Copyright 2015 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
8 xmlns:chrome="http://schemas.android.com/apk/res-auto" | 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 <org.chromium.chrome.browser.widget.EmptyAlertEditText | 76 <org.chromium.chrome.browser.widget.EmptyAlertEditText |
77 android:id="@+id/url_text" | 77 android:id="@+id/url_text" |
78 android:layout_width="match_parent" | 78 android:layout_width="match_parent" |
79 android:layout_height="wrap_content" | 79 android:layout_height="wrap_content" |
80 android:hint="@string/bookmark_url" | 80 android:hint="@string/bookmark_url" |
81 android:imeOptions="flagNoExtractUi" | 81 android:imeOptions="flagNoExtractUi" |
82 android:inputType="textUri" | 82 android:inputType="textUri" |
83 android:singleLine="true" | 83 android:singleLine="true" |
84 chrome:alertMessage="@string/bookmark_missing_url" /> | 84 chrome:alertMessage="@string/bookmark_missing_url" /> |
85 </org.chromium.chrome.browser.widget.FloatLabelLayout> | 85 </org.chromium.chrome.browser.widget.FloatLabelLayout> |
86 | |
87 <LinearLayout | |
88 android:id="@+id/offline_page_group" | |
89 android:layout_width="match_parent" | |
90 android:layout_height="wrap_content" | |
91 android:orientation="horizontal" | |
92 android:layout_marginTop="28dp" | |
93 android:visibility="gone" > | |
94 | |
95 <TextView | |
96 android:id="@+id/offline_page_info_text" | |
97 android:layout_width="0dp" | |
98 android:layout_height="wrap_content" | |
99 android:layout_weight="1" | |
100 android:layout_gravity="center_vertical" | |
101 android:layout_marginStart="3dp" | |
102 android:text="@string/bookmark_offline_page_none" | |
103 android:textAlignment="viewStart" | |
104 android:textAppearance="@style/TextAppearance.AppCompat.Medi
um" | |
105 android:textColor="@color/dark_mode_tint" | |
106 android:textSize="15sp" /> | |
107 | |
108 <Button | |
109 android:id="@+id/offline_page_save_remove_button" | |
110 style="@style/ButtonCompatBorderless" | |
111 android:layout_width="wrap_content" | |
112 android:layout_height="wrap_content" | |
113 android:layout_gravity="center_vertical" | |
114 android:textAllCaps="true" | |
115 android:textColor="@color/light_active_color" | |
116 android:textSize="15sp" /> | |
117 | |
118 </LinearLayout> | |
119 </LinearLayout> | 86 </LinearLayout> |
120 </ScrollView> | 87 </ScrollView> |
121 </LinearLayout> | 88 </LinearLayout> |
OLD | NEW |