mirror of
https://github.com/bspeice/UNCCGameDay
synced 2025-07-02 06:16:49 -04:00
Add some skeleton code for fetching alerts.
This commit is contained in:
@ -9,8 +9,33 @@
|
||||
tools:context=".Home" >
|
||||
|
||||
<TextView
|
||||
android:id="@+id/home_label_welcome"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/hello_world" />
|
||||
|
||||
</RelativeLayout>
|
||||
<LinearLayout
|
||||
android:id="@+id/home_layout_alerts_root"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignLeft="@+id/home_label_welcome"
|
||||
android:layout_below="@+id/home_label_welcome"
|
||||
android:orientation="vertical" >
|
||||
|
||||
<TextView
|
||||
android:id="@+id/home_label_recent_alerts"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/home_label_recent_alerts" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/home_layout_alerts"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical" >
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</RelativeLayout>
|
Reference in New Issue
Block a user