58 lines
No EOL
1.9 KiB
XML
58 lines
No EOL
1.9 KiB
XML
<?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" >
|
|
|
|
<TextView
|
|
android:id="@+id/title_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignBaseline="@+id/title"
|
|
android:text="@string/addcustom_title" />
|
|
|
|
<EditText
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_toRightOf="@+id/title_text"
|
|
android:layout_alignParentTop="true"
|
|
android:ems="10"
|
|
android:inputType="text" >
|
|
</EditText>
|
|
|
|
<TextView
|
|
android:id="@+id/artist_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/title_text"
|
|
android:layout_alignBaseline="@+id/artist"
|
|
android:text="@string/addcustom_artist" />
|
|
|
|
<EditText
|
|
android:id="@+id/artist"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/title"
|
|
android:layout_alignLeft="@+id/title"
|
|
android:ems="10"
|
|
android:inputType="text" >
|
|
</EditText>
|
|
|
|
<DatePicker
|
|
android:id="@+id/date"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@+id/artist"
|
|
android:layout_toRightOf="@+id/artist_text"
|
|
android:calendarViewShown="false" />
|
|
|
|
<Button
|
|
android:id="@+id/submit"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_below="@+id/date"
|
|
android:text="@string/addcustom_submit" />
|
|
|
|
</RelativeLayout> |