a27222dbc6
Some cleanup
53 lines
1.8 KiB
XML
53 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:bart="http://schemas.android.com/apk/res/com.dougkeen.bart"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/listTitle"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="10dp"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:textSize="24dp" />
|
|
|
|
<com.dougkeen.bart.controls.YourTrainLayout
|
|
android:id="@+id/yourTrainSection"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:padding="10dp"
|
|
android:visibility="gone" >
|
|
</com.dougkeen.bart.controls.YourTrainLayout>
|
|
|
|
<TextView
|
|
android:id="@android:id/empty"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1" />
|
|
|
|
<ListView
|
|
android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1" />
|
|
|
|
<ProgressBar
|
|
android:id="@android:id/progress"
|
|
style="@style/Holo.ProgressBar.Horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminate="true"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/missingDepartureText"
|
|
style="@style/MissingDepartureText"
|
|
android:autoLink="email"
|
|
android:singleLine="false"
|
|
android:text="@string/missing_departure"
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout> |