mirror of
https://github.com/bspeice/UNCCGameDay
synced 2024-11-05 07:38:13 -05:00
f6b7609420
RSVP list showing on search page. Ordered properly by last name. Still need to implement Search function - will tackle later today. All Section numbers showing NULL, all row numbers showing 0. Probably a quick fix on Bradlee's part.
35 lines
1.2 KiB
XML
35 lines
1.2 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: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>
|
|
|
|
<ListView
|
|
android:id="@+id/RSVPListView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignLeft="@+id/searchView1"
|
|
android:layout_below="@+id/searchView1" >
|
|
|
|
</ListView>
|
|
|
|
</RelativeLayout> |