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 <org.chromium.chrome.browser.ntp.IncognitoNewTabPageView | 6 <org.chromium.chrome.browser.ntp.IncognitoNewTabPageView |
7 xmlns:android="http://schemas.android.com/apk/res/android" | 7 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:id="@+id/ntp_content" | 9 android:id="@+id/ntp_content" |
10 android:layout_width="match_parent" | 10 android:layout_width="match_parent" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 | 43 |
44 <TextView | 44 <TextView |
45 android:layout_width="wrap_content" | 45 android:layout_width="wrap_content" |
46 android:layout_height="wrap_content" | 46 android:layout_height="wrap_content" |
47 android:fontFamily="sans-serif-light" | 47 android:fontFamily="sans-serif-light" |
48 android:text="@string/new_tab_incognito_header" | 48 android:text="@string/new_tab_incognito_header" |
49 android:textColor="#d2d2d2" | 49 android:textColor="#d2d2d2" |
50 android:textSize="24sp" /> | 50 android:textSize="24sp" /> |
51 | 51 |
52 <TextView | 52 <TextView |
| 53 android:id="@+id/new_tab_incognito_message" |
53 android:layout_width="wrap_content" | 54 android:layout_width="wrap_content" |
54 android:layout_height="wrap_content" | 55 android:layout_height="wrap_content" |
55 android:layout_marginTop="32dp" | 56 android:layout_marginTop="32dp" |
56 android:layout_marginBottom="10dp" | 57 android:layout_marginBottom="10dp" |
57 android:maxWidth="660dp" | 58 android:maxWidth="660dp" |
58 android:singleLine="false" | 59 android:singleLine="false" |
59 android:text="@string/new_tab_incognito_message" | 60 android:text="@string/new_tab_incognito_message" |
60 android:textColor="#bdbdbd" | 61 android:textColor="#bdbdbd" |
61 android:textSize="14sp" | 62 android:textSize="14sp" |
62 android:lineSpacingMultiplier="1.2" /> | 63 android:lineSpacingMultiplier="1.2" /> |
(...skipping 10 matching lines...) Expand all Loading... |
73 android:text="@string/learn_more" | 74 android:text="@string/learn_more" |
74 android:textAllCaps="true" | 75 android:textAllCaps="true" |
75 android:textColor="#03a9f4" | 76 android:textColor="#03a9f4" |
76 android:textSize="14sp" /> | 77 android:textSize="14sp" /> |
77 | 78 |
78 </LinearLayout> | 79 </LinearLayout> |
79 | 80 |
80 </org.chromium.chrome.browser.ntp.NewTabScrollView> | 81 </org.chromium.chrome.browser.ntp.NewTabScrollView> |
81 | 82 |
82 </org.chromium.chrome.browser.ntp.IncognitoNewTabPageView> | 83 </org.chromium.chrome.browser.ntp.IncognitoNewTabPageView> |
OLD | NEW |