OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2017 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. --> |
| 5 |
| 6 <FrameLayout |
| 7 xmlns:android="http://schemas.android.com/apk/res/android" |
| 8 xmlns:chrome="http://schemas.android.com/apk/res-auto" |
| 9 android:layout_width="match_parent" |
| 10 android:layout_height="match_parent" |
| 11 android:background="@color/incognito_primary_color" > |
| 12 |
| 13 <ScrollView |
| 14 android:id="@+id/scroll_view" |
| 15 android:layout_width="match_parent" |
| 16 android:layout_height="match_parent" > |
| 17 |
| 18 <LinearLayout |
| 19 android:layout_width="match_parent" |
| 20 android:layout_height="wrap_content" |
| 21 android:gravity="center_horizontal" |
| 22 android:orientation="vertical" |
| 23 android:paddingStart="16dp" |
| 24 android:paddingEnd="16dp" |
| 25 android:paddingTop="16dp" |
| 26 android:paddingBottom="16dp" > |
| 27 |
| 28 <TextView |
| 29 android:layout_width="wrap_content" |
| 30 android:layout_height="wrap_content" |
| 31 android:text="@string/new_tab_incognito_header" |
| 32 android:textColor="@color/locationbar_light_hint_text" |
| 33 android:textSize="24sp" /> |
| 34 |
| 35 <TextView |
| 36 android:id="@+id/new_tab_incognito_message" |
| 37 style="@style/IncognitoNewTabMessage" |
| 38 android:layout_width="wrap_content" |
| 39 android:layout_height="wrap_content" |
| 40 android:layout_marginTop="16dp" |
| 41 android:layout_marginBottom="10dp" |
| 42 android:text="@string/new_tab_incognito_message" |
| 43 android:textColor="@color/locationbar_light_hint_text" /> |
| 44 |
| 45 <TextView |
| 46 android:id="@+id/learn_more" |
| 47 style="@style/IncognitoNewTabLearnMoreLink" |
| 48 android:layout_width="wrap_content" |
| 49 android:layout_height="wrap_content" |
| 50 android:text="@string/learn_more" |
| 51 android:textColor="@color/google_blue_300" /> |
| 52 |
| 53 </LinearLayout> |
| 54 |
| 55 </ScrollView> |
| 56 |
| 57 <org.chromium.chrome.browser.widget.FadingShadowView |
| 58 android:id="@+id/shadow" |
| 59 android:layout_width="match_parent" |
| 60 android:layout_height="@dimen/action_bar_shadow_height" |
| 61 android:visibility="gone" /> |
| 62 |
| 63 </FrameLayout> |
| 64 |
OLD | NEW |