2014-06-04 15:08:08 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-06-05 01:31:50 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-06-04 15:08:08 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2014-11-17 16:25:17 +01:00
|
|
|
android:orientation="vertical">
|
2014-06-04 15:08:08 +02:00
|
|
|
|
2014-06-05 01:31:50 +02:00
|
|
|
<TextView
|
2015-02-13 13:33:42 +01:00
|
|
|
android:id="@+id/memory_size"
|
2014-06-05 01:31:50 +02: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"
|
2015-02-12 13:41:34 +01:00
|
|
|
android:layout_height="0dp"
|
2014-06-05 01:31:50 +02:00
|
|
|
android:layout_marginLeft="0dp"
|
|
|
|
android:layout_marginRight="0dp"
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
android:layout_weight="1"
|
2014-12-29 16:52:20 +01:00
|
|
|
android:groupIndicator="@android:color/transparent"/>
|
2014-06-05 01:31:50 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|