2011-05-23 18:59:34 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-09-27 15:56:27 +00:00
|
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-07-17 20:43:42 +00:00
|
|
|
xmlns:bart="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" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/destinationColorBar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:src="@drawable/basic_rectangle" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/topRow"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_toRightOf="@id/destinationColorBar" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/destinationText"
|
|
|
|
style="@style/DepartureDestinationText"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:singleLine="true" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/bikeIcon"
|
|
|
|
style="@style/BikeIcon"
|
|
|
|
android:src="@drawable/bike" />
|
|
|
|
|
2012-07-17 20:43:42 +00:00
|
|
|
<com.dougkeen.bart.controls.CountdownTextView
|
2012-02-20 01:46:11 +00:00
|
|
|
android:id="@+id/countdown"
|
|
|
|
style="@style/DepartureCountdownText"
|
2012-07-17 20:43:42 +00:00
|
|
|
android:gravity="right"
|
|
|
|
android:width="90dp"
|
|
|
|
bart:tickInterval="1" />
|
2012-02-20 01:46:11 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/xferIcon"
|
|
|
|
style="@style/XferIcon"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@id/topRow"
|
|
|
|
android:src="@drawable/xfer" />
|
|
|
|
|
2012-07-17 20:43:42 +00:00
|
|
|
<com.dougkeen.bart.controls.TimedTextSwitcher
|
2012-02-20 01:46:11 +00:00
|
|
|
android:id="@+id/trainLengthText"
|
2012-04-13 01:07:55 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-02-20 01:46:11 +00:00
|
|
|
android:layout_below="@id/topRow"
|
2012-07-17 20:43:42 +00:00
|
|
|
android:layout_toRightOf="@id/destinationColorBar"
|
2012-09-07 05:47:27 +00:00
|
|
|
bart:tickInterval="1" />
|
2012-02-20 01:46:11 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/uncertainty"
|
|
|
|
style="@style/DepartureUncertaintyText"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@id/topRow" />
|
|
|
|
|
2012-09-27 15:56:27 +00:00
|
|
|
</merge>
|