2017-07-29 12:24:32 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-05-12 22:18:55 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-08-03 10:54:09 +02:00
|
|
|
android:layout_width="match_parent"
|
2018-05-12 22:18:55 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2017-07-29 12:24:32 +02:00
|
|
|
|
|
|
|
<ExpandableListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginLeft="0dp"
|
|
|
|
android:layout_marginRight="0dp"
|
|
|
|
android:layout_marginTop="0dp"
|
|
|
|
android:divider="@null"
|
|
|
|
android:dividerHeight="0dp"
|
|
|
|
android:drawSelectorOnTop="false"
|
2017-08-03 10:54:09 +02:00
|
|
|
android:groupIndicator="@android:color/transparent"/>
|
2017-07-29 12:24:32 +02:00
|
|
|
|
2017-08-10 18:09:52 +02:00
|
|
|
<View
|
|
|
|
android:id="@+id/overlay_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/white_80_transparent"
|
|
|
|
android:visibility="gone"/>
|
|
|
|
|
2017-08-16 10:14:12 +02:00
|
|
|
<include layout="@layout/my_places_fabs"/>
|
2017-08-08 12:22:14 +02:00
|
|
|
|
2018-05-12 22:18:55 +02:00
|
|
|
</RelativeLayout>
|