2015-01-29 13:10:32 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2015-02-03 11:41:13 +01:00
|
|
|
android:orientation="vertical">
|
2015-01-29 13:10:32 +01:00
|
|
|
|
|
|
|
<TextView
|
2015-02-13 13:33:42 +01:00
|
|
|
android:id="@+id/memory_size"
|
2015-01-29 13:10:32 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:text=""
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<ExpandableListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_marginLeft="0dp"
|
|
|
|
android:layout_marginRight="0dp"
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:groupIndicator="@android:color/transparent"/>
|
|
|
|
|
2015-03-12 17:48:30 +01:00
|
|
|
<net.osmand.plus.activities.search.toolbar.SplitToolbar
|
|
|
|
android:id="@+id/bottomControls"
|
|
|
|
android:background="?attr/bottomToolBarColor"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
2015-01-29 13:10:32 +01:00
|
|
|
</LinearLayout>
|