Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(524)

Side by Side Diff: chrome/android/java/res/layout/incognito_bottom_sheet_content.xml

Issue 2809923003: [Home] Add a Chrome Home specific incognito NTP (Closed)
Patch Set: [Home] Add a Chrome Home specific incognito NTP Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW
« no previous file with comments | « chrome/android/java/res/layout/chrome_home_new_tab_page.xml ('k') | chrome/android/java/res/layout/new_tab_page_incognito.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698