AntennaPod/res/layout/organize_queue.xml

39 lines
1.5 KiB
XML
Raw Normal View History

2013-04-17 10:14:41 +02:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2013-02-18 19:11:33 +01:00
xmlns:dslv="http://schemas.android.com/apk/res/de.danoeh.antennapod"
android:layout_width="fill_parent"
2013-04-17 10:14:41 +02:00
android:layout_height="fill_parent" >
2013-02-18 19:11:33 +01:00
<com.mobeta.android.dslv.DragSortListView
android:id="@android:id/list"
android:layout_width="match_parent"
2013-04-17 10:14:41 +02:00
android:layout_height="match_parent"
2013-02-18 19:11:33 +01:00
dslv:collapsed_height="2dp"
dslv:drag_enabled="true"
dslv:drag_handle_id="@id/drag_handle"
dslv:drag_scroll_start="0.33"
dslv:drag_start_mode="onDown"
dslv:float_alpha="0.6"
dslv:max_drag_scroll_speed="0.5"
dslv:remove_enabled="true"
dslv:remove_mode="flingRemove"
dslv:slide_shuffle_speed="0.3"
dslv:sort_enabled="true"
dslv:track_drag_sort="false"
dslv:float_background_color="?attr/dragview_float_background"
2013-02-18 19:11:33 +01:00
dslv:use_default_controller="true" />
<TextView
android:id="@id/android:empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:text="@string/no_items_label" />
2013-02-18 19:11:33 +01:00
2013-04-15 17:42:38 +02:00
<LinearLayout android:id="@+id/undobar" style="@style/UndoBar">
<TextView android:id="@+id/undobar_message" style="@style/UndoBarMessage" />
<Button android:id="@+id/undobar_button" style="@style/UndoBarButton" />
</LinearLayout>
2013-04-17 10:14:41 +02:00
</FrameLayout>