Index: chrome/android/java/res/layout/new_tab_page_scrollview.xml |
diff --git a/chrome/android/java/res/layout/new_tab_page_scrollview.xml b/chrome/android/java/res/layout/new_tab_page_scrollview.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a36dd8d8fc97e89ca19fa8bc6564a00a515f3beb |
--- /dev/null |
+++ b/chrome/android/java/res/layout/new_tab_page_scrollview.xml |
@@ -0,0 +1,20 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
mcwilliams
2016/03/21 12:45:50
Likewise here ...scroll_view.xml for naming conven
May
2016/03/23 19:22:55
Same, ScrollView is an Android element so prefer t
|
+<!-- Copyright 2016 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. --> |
+ |
+<org.chromium.chrome.browser.ntp.NewTabScrollView |
+ xmlns:android="http://schemas.android.com/apk/res/android" |
+ xmlns:chrome="http://schemas.android.com/apk/res-auto" |
newt (away)
2016/03/23 05:29:37
not needed
May
2016/03/23 19:22:55
Done.
|
+ android:background="@color/ntp_bg" |
+ android:fillViewport="true" |
+ android:layout_width="match_parent" |
+ android:layout_height="match_parent" |
+ android:layout_marginBottom="48dp" |
+ android:focusable="true" |
+ android:focusableInTouchMode="true" |
+ android:contentDescription="@string/accessibility_new_tab_page" > |
+ |
+ <include layout="@layout/new_tab_page_layout" /> |
+ |
+</org.chromium.chrome.browser.ntp.NewTabScrollView> |