2011-01-16 23:06:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-09-27 18:04:01 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:paddingLeft="2dp"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:paddingStart="2dp"
|
2014-03-10 18:19:15 +01:00
|
|
|
android:paddingRight="2dp"
|
2014-02-20 14:15:50 +01:00
|
|
|
android:paddingEnd="2dp"
|
2013-09-27 18:04:01 +02:00
|
|
|
android:baselineAligned="false"
|
2011-01-16 23:06:18 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2013-09-27 18:04:01 +02:00
|
|
|
<TextView android:id="@+id/description"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-10-11 20:30:36 +02:00
|
|
|
android:padding="4dp"
|
2013-10-11 20:25:18 +02:00
|
|
|
android:gravity="center" />
|
2011-01-16 23:06:18 +00:00
|
|
|
|
2013-09-27 18:04:01 +02:00
|
|
|
<ListView android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
2011-01-16 23:06:18 +00:00
|
|
|
android:layout_height="fill_parent" />
|
|
|
|
|
|
|
|
</LinearLayout>
|