Line | |
---|
1 | <?xml version="1.0" encoding="utf-8"?> |
---|
2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
---|
3 | android:orientation="vertical" |
---|
4 | android:layout_width="fill_parent" |
---|
5 | android:layout_height="fill_parent" |
---|
6 | android:paddingLeft="8dp" |
---|
7 | android:paddingRight="8dp"> |
---|
8 | |
---|
9 | <LinearLayout android:id="@android:id/android:empty" |
---|
10 | android:layout_width="fill_parent" |
---|
11 | android:layout_height="fill_parent" android:orientation="vertical" |
---|
12 | android:layout_gravity="center"> |
---|
13 | |
---|
14 | <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" |
---|
15 | android:src="@drawable/download" android:layout_gravity="center" android:padding="5px"></ImageView> |
---|
16 | |
---|
17 | <TextView android:layout_width="fill_parent" |
---|
18 | android:layout_height="fill_parent" |
---|
19 | android:text="@string/list.empty" android:padding="10px" android:linksClickable="true"/> |
---|
20 | |
---|
21 | </LinearLayout> |
---|
22 | |
---|
23 | <ListView android:id="@android:id/android:list" |
---|
24 | android:layout_width="fill_parent" |
---|
25 | android:layout_height="fill_parent" |
---|
26 | android:layout_weight="1" |
---|
27 | android:drawSelectorOnTop="false"/> |
---|
28 | </LinearLayout> |
---|
Note: See
TracBrowser
for help on using the repository browser.