OLD | NEW |
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 Loading... |
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> |
OLD | NEW |