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-10-28 23:11:23 -04:00
|
|
|
android:background="#7d9a43">
|
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-09-30 14:23:13 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-04 20:22:54 -04:00
|
|
|
android:text="@string/alerts_label_alerts_to_receive"
|
2013-10-28 23:06:37 -04:00
|
|
|
android:textColor="@color/black"
|
2013-10-04 20:22:54 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
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-10-28 23:06:37 -04:00
|
|
|
android:textColor="@color/black"
|
2013-10-04 20:22:54 -04:00
|
|
|
android:onClick="onClickTimedAlerts" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/alerts_check_organizations"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/alerts_check_organizations"
|
2013-10-28 23:06:37 -04:00
|
|
|
android:textColor="@color/black"
|
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-10-28 23:06:37 -04:00
|
|
|
android:textColor="@color/black"
|
2013-10-04 20:22:54 -04:00
|
|
|
android:onClick="onClickUniversityAlerts" />
|
|
|
|
|
2013-10-28 23:06:37 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/getAlertsButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/black"
|
|
|
|
android:text="@string/button_get_alerts" />
|
|
|
|
|
2013-10-04 20:22:54 -04:00
|
|
|
</LinearLayout>
|