2011-11-12 20:44:06 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
2012-08-26 20:53:07 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-11-12 20:44:06 +01:00
|
|
|
android:layout_width="fill_parent"
|
2012-08-26 20:53:07 +02:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/select_game_hint"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:includeFontPadding="true">
|
|
|
|
</TextView>
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/select_game_filter"
|
|
|
|
android:hint="@string/filter_text"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:inputType="text"
|
|
|
|
android:layout_margin="10dp">
|
|
|
|
</EditText>
|
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:focusable="false">
|
|
|
|
</ListView>
|
2011-11-12 20:44:06 +01:00
|
|
|
</LinearLayout>
|