2013-12-02 17:41:14 -05:00
|
|
|
<?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:background="#7d9a43"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
>
|
|
|
|
|
|
|
|
<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:background="#b29600"
|
|
|
|
android:queryHint="@string/search_hint"
|
|
|
|
android:inputType="text" >
|
|
|
|
</SearchView>
|
|
|
|
|
2013-12-05 13:37:01 -05:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/RSVPListView"
|
|
|
|
android:layout_width="match_parent"
|
2013-12-02 17:41:14 -05:00
|
|
|
android:layout_height="wrap_content"
|
2013-12-05 13:37:01 -05:00
|
|
|
android:layout_alignLeft="@+id/searchView1"
|
|
|
|
android:layout_below="@+id/searchView1" >
|
|
|
|
|
|
|
|
</ListView>
|
2013-12-02 17:41:14 -05:00
|
|
|
|
|
|
|
</RelativeLayout>
|