2011-05-23 18:59:34 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-03-25 01:38:06 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res/com.dougkeen.bart"
|
2012-02-20 01:46:11 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-09-26 00:14:39 +00:00
|
|
|
android:gravity="center"
|
2012-02-20 01:46:11 +00:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2013-03-25 01:38:06 +00:00
|
|
|
<com.mobeta.android.dslv.DragSortListView
|
2012-02-20 01:46:11 +00:00
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-03-25 01:38:06 +00:00
|
|
|
android:layout_margin="3dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:dividerHeight="1dp"
|
|
|
|
android:padding="3dp"
|
|
|
|
app:collapsed_height="1dp"
|
|
|
|
app:drag_enabled="true"
|
|
|
|
app:drag_handle_id="@id/dragHandle"
|
|
|
|
app:drag_scroll_start="0.33"
|
|
|
|
app:drag_start_mode="onDown"
|
|
|
|
app:float_alpha="0.6"
|
|
|
|
app:remove_enabled="true"
|
|
|
|
app:remove_mode="flingRemove"
|
|
|
|
app:slide_shuffle_speed="0.3" />
|
2012-02-20 01:46:11 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@android:id/empty"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-09-05 17:34:00 +00:00
|
|
|
android:layout_weight="1"
|
2013-03-24 23:11:43 +00:00
|
|
|
android:text="@string/empty_favorites_list_message"
|
2012-09-05 17:34:00 +00:00
|
|
|
android:visibility="gone" />
|
2012-07-16 15:06:31 +00:00
|
|
|
|
2013-01-29 16:31:18 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/alertMessages"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:drawableLeft="@drawable/ic_warn"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2012-07-16 15:06:31 +00:00
|
|
|
<FrameLayout
|
|
|
|
style="ButtonBar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom" >
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/quickLookupButton"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/quick_departure_lookup" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
2011-05-23 18:59:34 +00:00
|
|
|
</LinearLayout>
|