BartRunnerAndroid/app/src/main/res/layout/train_alarm_dialog.xml

25 lines
865 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:holo="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<NumberPicker
android:id="@+id/numberPicker"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"></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>