OsmAnd/OsmAnd/res/layout/available_gpx.xml
2020-02-24 18:37:15 +03:00

26 lines
No EOL
920 B
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/activity_background_color"
android:orientation="vertical">
<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:divider="@null"
android:dividerHeight="0dp"
android:drawSelectorOnTop="false"
android:groupIndicator="@android:color/transparent"
android:layout_marginStart="0dp"
android:layout_marginEnd="0dp" />
<include layout="@layout/empty_state_my_tracks"
android:id="@android:id/empty"/>
</LinearLayout>