UNCCGameDay/res/layout/activity_registration.xml

122 lines
4.6 KiB
XML
Raw Normal View History

<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"
tools:context=".Registration" >
2013-10-28 20:33:41 -04:00
<TextView
android:id="@+id/studentName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_marginTop="26dp"
android:text="@string/student_name"
android:textAllCaps="false"
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/studentOrganization"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/studentName"
android:layout_marginTop="72dp"
2013-10-28 23:06:37 -04:00
android:textColor="@color/black"
2013-10-28 20:33:41 -04:00
android:text="@string/student_organization"
android:textAppearance="?android:attr/textAppearanceSmall" />
<TextView
android:id="@+id/sectionNumber"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/studentOrganization"
android:layout_marginTop="72dp"
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"
android:layout_marginTop="72dp"
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
android:id="@+id/editStudentName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/studentName"
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
<requestFocus />
</EditText>
<EditText
android:id="@+id/editOrganizationName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/studentOrganization"
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
<Button
android:id="@+id/buttonSave"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginLeft="18dp"
2013-10-28 23:06:37 -04:00
android:textColor="@color/black"
2013-10-28 20:33:41 -04:00
android:layout_toRightOf="@+id/checkBoxBroadcastInfo"
android:text="@string/button_save" />
<CheckBox
android:id="@+id/checkBoxBroadcastInfo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/buttonSave"
android:layout_alignBottom="@+id/buttonSave"
android:layout_alignParentLeft="true"
2013-10-28 23:06:37 -04:00
android:textColor="@color/black"
2013-10-28 20:33:41 -04:00
android:text="@string/check_box_broadcast" />
</RelativeLayout>