2012-09-07 05:47:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-10-03 19:29:31 +00:00
|
|
|
xmlns:holo="http://schemas.android.com/apk/res-auto"
|
2012-09-07 05:47:27 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
2012-10-12 14:04:19 +00:00
|
|
|
<net.simonvt.widget.NumberPicker
|
2012-09-07 05:47:27 +00:00
|
|
|
android:id="@+id/numberPicker"
|
|
|
|
android:layout_width="match_parent"
|
2012-09-18 17:11:52 +00:00
|
|
|
android:layout_height="wrap_content"
|
2012-09-07 05:47:27 +00:00
|
|
|
android:layout_weight="1" >
|
2012-10-12 14:04:19 +00:00
|
|
|
</net.simonvt.widget.NumberPicker>
|
2012-09-07 05:47:27 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/textView1"
|
|
|
|
style="@style/LargeText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="3"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:text="minutes before departure" />
|
|
|
|
|
|
|
|
</LinearLayout>
|