2011-05-23 18:59:34 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent" android:layout_height="fill_parent">
|
|
|
|
<ImageView android:id="@+id/destinationColorBar" android:src="@drawable/basic_rectangle"
|
|
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content"
|
2011-05-27 21:06:58 +00:00
|
|
|
android:layout_alignParentLeft="true" android:layout_centerVertical="true" />
|
2011-05-29 04:55:47 +00:00
|
|
|
<LinearLayout android:id="@+id/topRow"
|
|
|
|
android:layout_width="fill_parent" android:layout_height="wrap_content"
|
2011-05-27 21:06:58 +00:00
|
|
|
android:layout_toRightOf="@id/destinationColorBar"
|
2011-05-29 04:55:47 +00:00
|
|
|
android:layout_alignParentTop="true">
|
2011-06-05 18:13:21 +00:00
|
|
|
<TextView android:id="@+id/destinationText" style="@style/DepartureDestinationText"
|
2011-05-29 04:55:47 +00:00
|
|
|
android:layout_weight="1" android:singleLine="true"
|
|
|
|
android:ellipsize="marquee" />
|
|
|
|
<ImageView android:id="@+id/bikeIcon" android:src="@drawable/bike"
|
|
|
|
style="@style/BikeIcon" />
|
2011-06-05 18:13:21 +00:00
|
|
|
<TextView android:id="@+id/countdown" style="@style/DepartureCountdownText"
|
2011-05-29 04:55:47 +00:00
|
|
|
android:gravity="right" />
|
|
|
|
</LinearLayout>
|
2011-05-27 21:06:58 +00:00
|
|
|
<ImageView android:id="@+id/xferIcon" android:src="@drawable/xfer"
|
2011-05-29 04:55:47 +00:00
|
|
|
android:layout_below="@id/topRow" android:layout_alignParentRight="true"
|
2011-05-27 21:06:58 +00:00
|
|
|
style="@style/XferIcon" />
|
2011-06-05 18:13:21 +00:00
|
|
|
<TextView android:id="@+id/trainLengthText" style="@style/DepartureTrainLengthText"
|
2011-05-29 04:55:47 +00:00
|
|
|
android:layout_toRightOf="@id/destinationColorBar"
|
|
|
|
android:layout_below="@id/topRow" />
|
|
|
|
<TextView android:layout_alignParentRight="true" android:id="@+id/uncertainty"
|
2011-06-05 18:13:21 +00:00
|
|
|
android:layout_below="@id/topRow" style="@style/DepartureUncertaintyText" />
|
2011-05-27 21:06:58 +00:00
|
|
|
</RelativeLayout>
|