BartRunnerAndroid/app/src/main/res/layout/main.xml

58 lines
1.9 KiB
XML
Raw Normal View History

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"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
2012-09-26 00:14:39 +00:00
android:gravity="center"
2015-08-12 01:56:23 +00:00
android:orientation="vertical">
2013-03-25 01:38:06 +00:00
<com.mobeta.android.dslv.DragSortListView
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" />
<TextView
android:id="@android:id/empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/empty_favorites_list_message"
android:visibility="gone" />
2012-07-16 15:06:31 +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"
2015-08-12 01:56:23 +00:00
android:layout_gravity="bottom">
2012-07-16 15:06:31 +00:00
<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>
</LinearLayout>