2011-05-07 13:12:58 +02: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" android:orientation="vertical">
|
2011-08-28 20:32:25 +02:00
|
|
|
|
2013-05-09 19:24:30 +02:00
|
|
|
<TextView android:id="@+id/DescriptionText" android:layout_width="fill_parent" android:layout_height="wrap_content"
|
2013-07-17 13:55:51 +02:00
|
|
|
android:layout_marginLeft="10dp" android:layout_marginTop="3dp" android:layout_marginBottom="5dp"
|
2012-05-28 13:53:36 +02:00
|
|
|
android:layout_marginRight="10dp" android:text="@string/download_link_and_local_description"/>
|
2011-08-28 20:32:25 +02:00
|
|
|
|
2012-03-10 00:39:59 +01:00
|
|
|
<ExpandableListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
2013-08-03 03:29:16 +02:00
|
|
|
android:layout_height="0dp"
|
2012-03-10 00:39:59 +01:00
|
|
|
android:layout_marginLeft="0dp"
|
|
|
|
android:layout_marginRight="0dp"
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:groupIndicator="@android:color/transparent"
|
|
|
|
style="@style/OsmandListView" >
|
|
|
|
</ExpandableListView>
|
2011-05-08 10:27:10 +02:00
|
|
|
|
2011-08-19 10:00:53 +02:00
|
|
|
</LinearLayout>
|