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 <!-- Based on Android framework file, with customization to keep button bar | |
7 visible when the list view is empty: | |
8 platform_frameworks_base/core/res/res/layout/preference_list_fragment.xml | |
9 --> | |
10 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
11 android:orientation="vertical" | |
12 android:layout_height="match_parent" | |
13 android:layout_width="match_parent" | |
14 android:background="@android:color/transparent"> | |
15 | |
16 <FrameLayout | |
17 android:layout_width="match_parent" | |
18 android:layout_height="0dp" | |
19 android:layout_weight="1" | |
20 android:background="@android:color/transparent"> | |
21 | |
22 <ListView android:id="@android:id/list" | |
23 android:layout_width="match_parent" | |
24 android:layout_height="match_parent" | |
25 android:paddingTop="0dip" | |
26 android:paddingBottom="0dp" | |
27 android:clipToPadding="false" | |
28 android:drawSelectorOnTop="false" | |
29 android:cacheColorHint="@android:color/transparent" | |
30 android:scrollbarAlwaysDrawVerticalTrack="true" /> | |
31 | |
32 <TextView android:id="@android:id/empty" | |
33 android:layout_width="match_parent" | |
34 android:layout_height="match_parent" | |
35 android:padding="8dip" | |
36 android:textAppearance="?android:attr/textAppearanceMedium" | |
37 android:gravity="center" | |
38 android:visibility="gone" /> | |
39 | |
Finnur
2015/11/26 15:54:41
nit: Remove line break.
dmurph
2015/11/30 22:16:52
Done.
| |
40 </FrameLayout> | |
Finnur
2015/11/26 15:54:41
Indentation seems off.
dmurph
2015/11/30 22:16:52
Done.
| |
41 | |
42 <RelativeLayout android:id="@+id/button_bar" | |
43 android:layout_height="wrap_content" | |
44 android:layout_width="match_parent" | |
45 android:layout_weight="0"> | |
46 | |
47 <Button android:id="@+id/clear_button" | |
48 android:layout_width="match_parent" | |
49 android:layout_height="wrap_content" | |
50 android:layout_margin="5dip" | |
51 android:layout_weight="1" | |
52 android:text="@string/storage_clear_button_title"/> | |
53 | |
Finnur
2015/11/26 15:54:41
nit: Remove line break.
dmurph
2015/11/30 22:16:52
On 2015/11/26 at 15:54:41, Finnur wrote:
> nit: Re
| |
54 </RelativeLayout> | |
55 | |
56 </LinearLayout> | |
OLD | NEW |