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

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

Issue 1459593002: Added a UI for the Interests Prototype. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « no previous file | chrome/android/java/res/layout/new_tab_page.xml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | chrome/android/java/res/layout/new_tab_page.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698