37 lines
1.1 KiB
XML
37 lines
1.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/routeslayout"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:background="#efefef"
|
||
|
android:layout_height="fill_parent" >
|
||
|
<LinearLayout
|
||
|
android:id="@+id/listheader1"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="#d2d2d2"
|
||
|
android:padding="10dp">
|
||
|
<TextView
|
||
|
android:id="@+id/stopnameHead"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textSize="16sp"
|
||
|
android:text="Stop Name"
|
||
|
android:textColor="#070707">
|
||
|
</TextView>
|
||
|
</LinearLayout>
|
||
|
<LinearLayout
|
||
|
android:id="@+id/linearlayout2"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_below="@id/listheader1">
|
||
|
<ListView
|
||
|
android:id="@android:id/list"
|
||
|
android:label="Buses"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="fill_parent">
|
||
|
</ListView>
|
||
|
</LinearLayout>
|
||
|
</RelativeLayout>
|
||
|
|