OsmAnd/OsmAnd/res/layout/local_index.xml

23 lines
944 B
XML
Raw Normal View History

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">
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"/>
<ExpandableListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="0dp"
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-08-19 10:00:53 +02:00
</LinearLayout>