UNCCGameDay/res/layout/activity_search_rsvp.xml
agk512 d03ce1427d Some search changes, plus Auto alert test
Added alerts every 30 minutes starting at 9am to 930pm on 12-7-13.  Will
have on phone today to ensure that automated alerts show properly.

Having no luck with search function, will try again tomorrow.
2013-12-07 01:17:45 -05:00

48 lines
1.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tool"
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"
style="@style/GameDayTheme"
>
<SearchView
android:id="@+id/searchView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="18dp"
android:queryHint="@string/search_hint"
android:inputType="text"
style="@style/GameDayTheme" >
</SearchView>
<TextView
android:id="@+id/textView1"
style="@style/GameDayTheme"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/searchView1"
android:layout_below="@+id/searchView1"
android:text="@string/search_text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textStyle="italic" />
<ListView
android:id="@+id/RSVPListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/searchView1"
android:layout_alignParentBottom="true"
android:layout_below="@+id/textView1" >
</ListView>
</RelativeLayout>