2013-10-04 20:22:54 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-10-28 20:33:41 -04:00
|
|
|
android:orientation="vertical"
|
2013-12-02 20:31:53 -05:00
|
|
|
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-09-30 14:23:13 -04:00
|
|
|
|
|
|
|
<TextView
|
2013-10-04 20:22:54 -04:00
|
|
|
android:id="@+id/alerts_label_alerts_to_receive"
|
2013-12-02 20:31:53 -05:00
|
|
|
android:layout_width="match_parent"
|
2013-09-30 14:23:13 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-10-04 20:22:54 -04:00
|
|
|
android:text="@string/alerts_label_alerts_to_receive"
|
2013-12-02 20:31:53 -05:00
|
|
|
android:textColor="@color/black" />
|
2013-09-30 14:23:13 -04:00
|
|
|
|
2013-10-04 20:22:54 -04:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/alerts_check_timed"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/alerts_check_timed"
|
2013-12-05 18:22:16 -05:00
|
|
|
android:onClick="onClickTimedAlerts"
|
|
|
|
style="@style/GameDayTheme" />
|
2013-10-04 20:22:54 -04:00
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/alerts_check_organizations"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/alerts_check_organizations"
|
2013-12-05 18:22:16 -05:00
|
|
|
style="@style/GameDayTheme"
|
2013-10-04 20:22:54 -04:00
|
|
|
android:onClick="onClickOrganizationAlerts" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/alerts_check_university"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/alerts_check_university"
|
2013-12-05 18:22:16 -05:00
|
|
|
android:onClick="onClickUniversityAlerts"
|
|
|
|
style="@style/GameDayTheme" />
|
2013-10-04 20:22:54 -04:00
|
|
|
|
2013-10-28 23:06:37 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/getAlertsButton"
|
2013-12-02 20:31:53 -05:00
|
|
|
android:layout_width="186dp"
|
2013-10-28 23:06:37 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-12-02 20:31:53 -05:00
|
|
|
android:gravity="left|center_vertical"
|
|
|
|
android:text="@string/button_get_alerts"
|
2013-12-05 18:22:16 -05:00
|
|
|
android:textColor="@color/black"
|
|
|
|
style="@style/GameDayTheme" />
|
2013-10-28 23:06:37 -04:00
|
|
|
|
2013-10-04 20:22:54 -04:00
|
|
|
</LinearLayout>
|