UNCCGameDay/res/layout/activity_search_rsvp.xml

48 lines
1.6 KiB
XML
Raw Normal View History

<?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>