2010-05-31 16:39:04 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<!--
|
|
|
|
<LinearLayout android:id="@+id/LinearLayout" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:layout_marginTop="3dp" android:layout_marginRight="5dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView android:text="" android:id="@+id/Label" android:layout_weight="1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:gravity="center"></TextView>
|
|
|
|
</LinearLayout>
|
|
|
|
-->
|
2012-08-24 01:06:28 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/LinearLayout"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:layout_marginRight="3dp"
|
|
|
|
android:layout_marginTop="1dp">
|
2010-06-01 09:25:29 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/ProgressBar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2010-05-31 16:39:04 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/SearchText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-07-06 11:37:17 +02:00
|
|
|
android:maxLines="1"
|
|
|
|
android:singleLine="true"
|
2015-10-17 18:00:44 +02:00
|
|
|
android:inputType="textNoSuggestions"
|
2015-07-06 11:37:17 +02:00
|
|
|
android:lines="1"
|
2014-11-19 00:47:59 +01:00
|
|
|
android:layout_weight="1"/>
|
2010-05-31 16:39:04 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
<Button
|
|
|
|
android:id="@+id/ResetButton"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
2015-03-08 16:02:34 +01:00
|
|
|
android:text="@string/shared_string_clear" />
|
2010-06-01 09:25:29 +02:00
|
|
|
|
2014-11-17 16:25:17 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:layout_marginRight="3dp"
|
|
|
|
android:layout_marginTop="3dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|