25 lines
846 B
XML
25 lines
846 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="horizontal" >
|
||
|
|
||
|
<net.simonvt.widget.NumberPicker
|
||
|
android:id="@+id/numberPicker"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="100dp"
|
||
|
android:layout_weight="1" >
|
||
|
</net.simonvt.widget.NumberPicker>
|
||
|
|
||
|
<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>
|