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"
|
2015-10-19 09:21:48 +02:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:paddingLeft="2dp"
|
|
|
|
android:paddingStart="2dp"
|
|
|
|
android:paddingRight="2dp"
|
|
|
|
android:paddingEnd="2dp"
|
|
|
|
android:baselineAligned="false"
|
|
|
|
android:orientation="vertical">
|
2011-01-16 23:06:18 +00:00
|
|
|
|
2015-10-19 09:21:48 +02:00
|
|
|
<TextView android:id="@+id/description"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:gravity="center" />
|
2011-01-16 23:06:18 +00:00
|
|
|
|
2015-10-19 09:21:48 +02:00
|
|
|
<ListView android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent" />
|
2011-01-16 23:06:18 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|