2011-05-07 13:28:34 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-03-10 00:39:59 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/MainLayout"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="vertical">
|
2011-05-07 13:28:34 +02:00
|
|
|
|
2013-02-04 01:00:21 +01:00
|
|
|
|
2012-03-10 00:39:59 +01:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/search_box"
|
2011-05-07 13:28:34 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-10 00:39:59 +01:00
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:layout_marginRight="3dp"
|
2013-07-17 13:55:51 +02:00
|
|
|
android:layout_marginBottom="5dp"
|
2011-05-07 13:28:34 +02:00
|
|
|
android:hint="@string/download_type_to_filter"
|
2013-07-12 02:40:43 +02:00
|
|
|
android:inputType="textFilter"
|
2012-03-10 00:39:59 +01:00
|
|
|
android:maxLines="1" />
|
|
|
|
|
|
|
|
<ExpandableListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginLeft="0dp"
|
|
|
|
android:layout_marginRight="0dp"
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
android:layout_weight="1"
|
2013-05-26 14:49:28 +02:00
|
|
|
android:groupIndicator="@android:color/transparent" />
|
2012-03-10 00:39:59 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|