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

Side by Side Diff: chrome/android/java/res/layout-sw720dp/download_main.xml

Issue 2270233003: [Android] Implement empty view for download manager ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add copyright to the xml drawable Created 4 years, 4 months 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 unified diff | Download patch
OLDNEW
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2016 The Chromium Authors. All rights reserved. 2 <!-- Copyright 2016 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. --> 4 found in the LICENSE file. -->
5 5
6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
7 android:layout_width="match_parent" 7 android:layout_width="match_parent"
8 android:layout_height="match_parent" 8 android:layout_height="match_parent"
9 android:orientation="horizontal" > 9 android:orientation="horizontal" >
10 10
(...skipping 10 matching lines...) Expand all
21 21
22 <ListView 22 <ListView
23 android:id="@+id/section_list" 23 android:id="@+id/section_list"
24 android:layout_width="match_parent" 24 android:layout_width="match_parent"
25 android:layout_height="0dp" 25 android:layout_height="0dp"
26 android:layout_weight="1" 26 android:layout_weight="1"
27 android:divider="@null" 27 android:divider="@null"
28 android:dividerHeight="0dp" /> 28 android:dividerHeight="0dp" />
29 </LinearLayout> 29 </LinearLayout>
30 30
31 <LinearLayout 31 <include layout="@layout/download_content" />
32 android:id="@+id/content_frame"
33 android:layout_width="match_parent"
34 android:layout_height="match_parent"
35 android:background="#ffffff"
36 android:orientation="vertical" >
37
38 <org.chromium.chrome.browser.download.ui.DownloadManagerToolbar
39 android:id="@id/action_bar"
40 android:layout_width="match_parent"
41 android:layout_height="?attr/actionBarSize"
42 android:background="@color/appbar_background" >
43
44 <include layout="@layout/number_roll_view" />
45
46 </org.chromium.chrome.browser.download.ui.DownloadManagerToolbar>
47
48 <org.chromium.chrome.browser.widget.FadingShadowView
49 android:id="@+id/shadow"
50 android:layout_width="match_parent"
51 android:layout_height="10dp"
52 android:layout_marginBottom="-10dp" />
53
54 <android.support.v7.widget.RecyclerView
55 android:id="@+id/recycler_view"
56 android:layout_width="match_parent"
57 android:layout_height="0dp"
58 android:layout_weight="1" />
59 </LinearLayout>
60 32
61 </LinearLayout> 33 </LinearLayout>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698