24 lines
No EOL
829 B
XML
24 lines
No EOL
829 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ListView
|
|
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"/>
|
|
|
|
<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"/>
|
|
|
|
<include layout="@layout/my_places_fabs"/>
|
|
|
|
</RelativeLayout> |