|
|
@@ -0,0 +1,74 @@ |
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
xmlns:tools="http://schemas.android.com/tools" |
|
|
xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" |
|
|
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin" |
|
|
android:paddingRight="@dimen/activity_horizontal_margin" |
|
|
android:paddingTop="@dimen/activity_vertical_margin" |
|
|
android:paddingBottom="@dimen/activity_vertical_margin" |
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" |
|
|
tools:showIn="@layout/activity_event_create" tools:context="stohio.barnraisr.EventCreate"> |
|
|
|
|
|
<EditText |
|
|
android:layout_width="wrap_content" |
|
|
android:layout_height="wrap_content" |
|
|
android:id="@+id/createTitle" |
|
|
android:hint="Title" |
|
|
android:layout_alignParentTop="true" |
|
|
android:layout_alignParentLeft="true" |
|
|
android:layout_alignParentStart="true" |
|
|
android:layout_alignParentRight="true" |
|
|
android:layout_alignParentEnd="true" /> |
|
|
|
|
|
<EditText |
|
|
android:layout_width="wrap_content" |
|
|
android:layout_height="wrap_content" |
|
|
android:id="@+id/createDesc" |
|
|
android:layout_below="@+id/createTitle" |
|
|
android:layout_alignParentLeft="true" |
|
|
android:layout_alignParentStart="true" |
|
|
android:hint="Description" |
|
|
android:layout_above="@+id/createTime" |
|
|
android:layout_alignParentRight="true" |
|
|
android:layout_alignParentEnd="true" /> |
|
|
|
|
|
<Button |
|
|
style="?android:attr/buttonStyleSmall" |
|
|
android:layout_width="wrap_content" |
|
|
android:layout_height="wrap_content" |
|
|
android:text="New Button" |
|
|
android:id="@+id/createTime" |
|
|
android:layout_above="@+id/createDate" |
|
|
android:layout_alignParentRight="true" |
|
|
android:layout_alignParentEnd="true" |
|
|
android:layout_alignParentLeft="true" |
|
|
android:layout_alignParentStart="true" /> |
|
|
|
|
|
<Button |
|
|
android:layout_width="wrap_content" |
|
|
android:layout_height="wrap_content" |
|
|
android:text="New Button" |
|
|
android:id="@+id/createDate" |
|
|
android:layout_above="@+id/textView6" |
|
|
android:layout_alignParentLeft="true" |
|
|
android:layout_alignParentStart="true" |
|
|
android:layout_alignRight="@+id/createTime" |
|
|
android:layout_alignEnd="@+id/createTime" /> |
|
|
<NumberPicker |
|
|
android:id="@+id/numberPicker1" |
|
|
android:layout_width="wrap_content" |
|
|
android:layout_height="wrap_content" |
|
|
android:layout_alignParentBottom="true" |
|
|
android:layout_centerHorizontal="true" |
|
|
android:layout_marginBottom="48dp" /> |
|
|
|
|
|
<TextView |
|
|
android:layout_width="wrap_content" |
|
|
android:layout_height="wrap_content" |
|
|
android:textAppearance="?android:attr/textAppearanceMedium" |
|
|
android:text="Maximum Volunteers" |
|
|
android:id="@+id/textView6" |
|
|
android:layout_above="@+id/numberPicker1" |
|
|
android:layout_centerHorizontal="true" /> |
|
|
|
|
|
</RelativeLayout> |