OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
dgn
2016/03/31 00:46:44
We might have to experiment with zine+toolbar. Res
| |
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved. | |
newt (away)
2016/03/30 19:03:50
2016
dgn
2016/03/31 00:46:44
File removed.
| |
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" | |
newt (away)
2016/03/30 19:03:50
xmlns:chrome not needed
dgn
2016/03/31 00:46:44
File removed.
| |
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" | |
newt (away)
2016/03/30 19:03:49
remove xmlns
dgn
2016/03/31 00:46:44
removed from new_tab_page.xml
| |
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 | |
newt (away)
2016/03/30 19:03:49
nit: remove extra newline
dgn
2016/03/31 00:46:44
File removed.
| |
25 </org.chromium.chrome.browser.ntp.NewTabPageView> | |
OLD | NEW |