OsmAnd/OsmAnd/res/layout/favorites_tree.xml

25 lines
942 B
XML
Raw Normal View History

2015-03-06 21:33:57 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2017-08-03 14:32:49 +02:00
android:id="@+id/MainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="?attr/ctx_menu_info_view_bg">
2015-03-06 21:33:57 +01:00
<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"
2017-02-18 13:59:44 +01:00
android:divider="@null"
android:dividerHeight="0dp"
android:drawSelectorOnTop="false"
2017-08-03 14:32:49 +02:00
android:groupIndicator="@android:color/transparent"/>
2017-08-11 11:11:16 +02:00
<include layout="@layout/empty_state_favourites"
android:id="@android:id/empty"/>
2015-03-06 21:33:57 +01:00
</LinearLayout>