2013-10-01 19:39:20 -04:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
2013-10-28 23:11:23 -04:00
|
|
|
android:background="#7d9a43"
|
2013-12-02 17:41:14 -05:00
|
|
|
tools:context=".Registration"
|
|
|
|
tools:ignore="Overdraw" >
|
2013-10-01 19:39:20 -04:00
|
|
|
|
2013-10-28 20:33:41 -04:00
|
|
|
<TextView
|
2013-12-02 18:44:17 -05:00
|
|
|
android:id="@+id/studentFirstName"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
2013-12-02 17:41:14 -05:00
|
|
|
android:layout_marginTop="10dp"
|
2013-12-02 18:44:17 -05:00
|
|
|
android:text="@string/student_first_name"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:textAllCaps="false"
|
2013-12-02 18:44:17 -05:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="@color/black" />
|
2013-10-28 20:33:41 -04:00
|
|
|
|
|
|
|
<TextView
|
2013-12-02 18:44:17 -05:00
|
|
|
android:id="@+id/studentLastName"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
2013-12-02 18:44:17 -05:00
|
|
|
android:layout_below="@+id/studentFirstName"
|
2013-12-02 17:41:14 -05:00
|
|
|
android:layout_marginTop="40dp"
|
2013-12-02 18:44:17 -05:00
|
|
|
android:text="@string/student_last_name"
|
2013-12-02 17:41:14 -05:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="@color/black" />
|
2013-10-28 20:33:41 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/sectionNumber"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
2013-12-02 18:44:17 -05:00
|
|
|
android:layout_below="@+id/studentLastName"
|
2013-12-02 17:41:14 -05:00
|
|
|
android:layout_marginTop="40dp"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:text="@string/section_number"
|
2013-10-28 23:06:37 -04:00
|
|
|
android:textColor="@color/black"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/studentRow"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@+id/sectionNumber"
|
2013-12-02 17:41:14 -05:00
|
|
|
android:layout_marginTop="40dp"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:text="@string/row_number"
|
2013-10-28 23:06:37 -04:00
|
|
|
android:textColor="@color/black"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<EditText
|
2013-12-02 18:44:17 -05:00
|
|
|
android:id="@+id/editStudentFirstName"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
2013-12-02 18:44:17 -05:00
|
|
|
android:layout_below="@+id/studentFirstName"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:ems="10"
|
2013-10-30 14:15:38 -04:00
|
|
|
android:inputType="textPersonName"
|
|
|
|
android:textColor="@color/black"
|
|
|
|
android:textColorLink="@color/black" >
|
2013-10-28 20:33:41 -04:00
|
|
|
|
2013-12-02 17:41:14 -05:00
|
|
|
<requestFocus android:layout_height="match_parent" />
|
|
|
|
|
2013-10-28 20:33:41 -04:00
|
|
|
</EditText>
|
|
|
|
|
|
|
|
<EditText
|
2013-12-02 18:44:17 -05:00
|
|
|
android:id="@+id/editStudentLastName"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
2013-12-02 18:44:17 -05:00
|
|
|
android:layout_below="@+id/studentLastName"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:ems="10"
|
2013-10-30 14:15:38 -04:00
|
|
|
android:inputType="text"
|
|
|
|
android:textColor="@color/black"
|
|
|
|
android:textColorHint="@color/black" />
|
2013-10-28 20:33:41 -04:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/editSectionNumber"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignLeft="@+id/sectionNumber"
|
|
|
|
android:layout_below="@+id/sectionNumber"
|
|
|
|
android:ems="10"
|
2013-10-30 14:15:38 -04:00
|
|
|
android:inputType="number"
|
|
|
|
android:textColor="@color/black" />
|
2013-10-28 20:33:41 -04:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/editRowNumber"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@+id/studentRow"
|
|
|
|
android:ems="10"
|
2013-10-30 14:15:38 -04:00
|
|
|
android:inputType="number"
|
|
|
|
android:textColor="@color/black" />
|
2013-10-28 20:33:41 -04:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/checkBoxBroadcastInfo"
|
2013-12-02 17:41:14 -05:00
|
|
|
android:layout_width="fill_parent"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-12-02 18:44:17 -05:00
|
|
|
android:layout_alignLeft="@+id/editRowNumber"
|
|
|
|
android:layout_below="@+id/editRowNumber"
|
2013-12-02 17:41:14 -05:00
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:text="@string/check_box_broadcast"
|
|
|
|
android:textColor="@color/black" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/buttonRegister"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginBottom="15dp"
|
|
|
|
android:text="@string/button_register"
|
2013-12-02 17:55:52 -05:00
|
|
|
android:textColor="@color/black"
|
|
|
|
android:onClick="onClick" />
|
2013-10-01 19:39:20 -04:00
|
|
|
|
|
|
|
</RelativeLayout>
|