You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp" >
|
|
<EditText
|
|
android:id="@+id/name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/reminder" />
|
|
<Spinner
|
|
android:id="@+id/dates"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/name"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_toLeftOf="@+id/times" />
|
|
<Spinner
|
|
android:id="@id/times"
|
|
android:layout_width="96dp"
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/name"
|
|
android:layout_alignParentRight="true" />
|
|
<Button
|
|
android:layout_width="96dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/times"
|
|
android:layout_alignParentRight="true"
|
|
android:text="@string/done" />
|
|
</RelativeLayout> |