OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- Copyright 2015 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 <org.chromium.chrome.browser.ntp.NewTabPageView |
| 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:paddingTop="@dimen/tab_strip_height" > |
| 12 |
| 13 <org.chromium.chrome.browser.ntp.v2.NewTabPageRecyclerView |
| 14 xmlns:android="http://schemas.android.com/apk/res/android" |
| 15 android:id="@+id/ntp_recycler_view" |
| 16 android:background="@color/ntp_with_cards_bg" |
| 17 android:fillViewport="true" |
| 18 android:layout_width="match_parent" |
| 19 android:layout_height="match_parent" |
| 20 android:focusable="true" |
| 21 android:focusableInTouchMode="true" |
| 22 android:contentDescription="@string/accessibility_new_tab_page" /> |
| 23 |
| 24 |
| 25 </org.chromium.chrome.browser.ntp.NewTabPageView> |
OLD | NEW |