33 lines
978 B
XML
33 lines
978 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
||
|
a:orientation="vertical"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="fill_parent">
|
||
|
|
||
|
<include layout="@layout/action_bar"/>
|
||
|
|
||
|
<View
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="1px"
|
||
|
a:background="@color/dividerColor"/>
|
||
|
|
||
|
<include layout="@layout/tab_progress"/>
|
||
|
|
||
|
<TextView
|
||
|
a:id="@+id/select_playlist_empty"
|
||
|
a:text="@string/select_playlist.empty"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="wrap_content"
|
||
|
a:padding="10dip"
|
||
|
a:visibility="gone"/>
|
||
|
|
||
|
<ListView a:id="@+id/select_playlist_list"
|
||
|
a:layout_width="fill_parent"
|
||
|
a:layout_height="0dip"
|
||
|
a:layout_weight="1.0"/>
|
||
|
|
||
|
<include layout="@layout/button_bar"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|