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

Unified Diff: chrome/android/java/res/layout/chrome_home_new_tab_page.xml

Issue 2715433008: 🏡 Add a ChromeHomeNewTabPage (Closed)
Patch Set: Changes from mdjones@ review Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/res/layout/chrome_home_new_tab_page.xml
diff --git a/chrome/android/java/res/layout/chrome_home_new_tab_page.xml b/chrome/android/java/res/layout/chrome_home_new_tab_page.xml
new file mode 100644
index 0000000000000000000000000000000000000000..4b7a446a4335d600ecb455bd4190dafa9445e88c
--- /dev/null
+++ b/chrome/android/java/res/layout/chrome_home_new_tab_page.xml
@@ -0,0 +1,42 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright 2017 The Chromium Authors. All rights reserved.
+ Use of this source code is governed by a BSD-style license that can be
+ found in the LICENSE file. -->
+
+<RelativeLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:chrome="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:focusable="true"
dgn 2017/02/28 14:09:56 why make it focusable? is that related to accessib
Theresa 2017/02/28 17:02:23 If it's not focusable then the toolbar/omnibox get
+ android:focusableInTouchMode="true"
+ android:background="@color/ntp_bg" >
+
+ <org.chromium.chrome.browser.widget.TintedImageButton
+ android:id="@+id/close_button"
+ android:layout_width="40dp"
+ android:layout_height="40dp"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentStart="true"
+ android:src="@drawable/btn_close"
+ android:scaleType="center"
+ android:background="@android:color/transparent"
+ chrome:tint="@color/dark_mode_tint" />
+
+ <View
+ android:id="@+id/centered_view"
+ android:layout_width="match_parent"
+ android:layout_height="30dp"
+ android:layout_centerInParent="true" />
+
+ <org.chromium.chrome.browser.ntp.LogoView
+ android:id="@+id/search_provider_logo"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/ntp_logo_height"
+ android:padding="16dp"
+ android:layout_marginEnd="16dp"
+ android:layout_marginBottom="16dp"
+ android:layout_marginTop="16dp"
+ android:layout_above="@id/centered_view" />
+
+</RelativeLayout>

Powered by Google App Engine
This is Rietveld 408576698