blob: 95f9d41563c2a61e4b56ef2727323232f50c1309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/select_genre_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<include layout="@layout/tab_progress" />
<TextView
android:id="@+id/select_genre_empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dip"
android:text="@string/select_genre.empty"
android:visibility="gone" />
<ListView
android:id="@+id/select_genre_list"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1.0"
android:textFilterEnabled="true"
android:fastScrollEnabled="true"/>
</LinearLayout>
</FrameLayout>
|