Index: chrome/android/java/res/layout/interests_page.xml |
diff --git a/chrome/android/java/res/layout/interests_page.xml b/chrome/android/java/res/layout/interests_page.xml |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b20fa62b3225f40a93eb9c9f492e93e85fb3dd4d |
--- /dev/null |
+++ b/chrome/android/java/res/layout/interests_page.xml |
@@ -0,0 +1,25 @@ |
+<?xml version="1.0" encoding="utf-8"?> |
+<!-- Copyright 2015 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.interests.InterestsView |
+ xmlns:android="http://schemas.android.com/apk/res/android" |
+ android:layout_width="match_parent" |
+ android:layout_height="match_parent" |
+ android:focusable="true" |
+ android:focusableInTouchMode="true" |
+ android:paddingTop="@dimen/tab_strip_height" > |
+ |
+ <GridView |
+ android:id="@+id/interests_list_view" |
+ android:layout_width="match_parent" |
+ android:layout_height="match_parent" |
+ android:gravity="center" |
+ android:horizontalSpacing="10dp" |
+ android:verticalSpacing="10dp" |
+ android:numColumns="auto_fit" |
+ android:paddingTop="@dimen/toolbar_height_no_shadow" |
+ android:stretchMode="columnWidth" /> |
+ |
+</org.chromium.chrome.browser.ntp.interests.InterestsView> |