2017-11-08 13:22:28 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-11-09 13:08:43 +01:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:orientation="vertical">
|
2017-11-08 13:22:28 +01:00
|
|
|
|
|
|
|
<net.osmand.plus.widgets.EmptyStateRecyclerView
|
|
|
|
android:id="@+id/list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-11-09 13:08:43 +01:00
|
|
|
android:paddingBottom="@dimen/fab_recycler_view_padding_bottom"
|
2017-11-08 13:22:28 +01:00
|
|
|
android:clipToPadding="false"/>
|
|
|
|
|
|
|
|
<include layout="@layout/empty_state_markers_groups"
|
|
|
|
android:id="@+id/empty_view"/>
|
|
|
|
|
2017-11-09 13:08:43 +01:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/add_group_fab"
|
|
|
|
android:layout_gravity="bottom|right"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/ic_action_plus"
|
|
|
|
app:backgroundTint="@color/dashboard_blue"
|
|
|
|
app:fabSize="normal"
|
|
|
|
app:useCompatPadding="true"/>
|
|
|
|
|
|
|
|
</FrameLayout>
|