2018-03-27 17:28:52 +02:00
|
|
|
<?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"
|
2018-03-30 17:41:12 +02:00
|
|
|
android:background="?attr/wikivoyage_bg_color"
|
2018-03-27 17:28:52 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2020-03-04 15:12:06 +01:00
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-03-27 17:28:52 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-03-04 15:12:06 +01:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
2018-03-27 17:28:52 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/dashboard_map_toolbar"
|
2018-03-30 17:41:12 +02:00
|
|
|
android:background="?attr/wikivoyage_card_bg_color"
|
2018-04-23 11:39:48 +02:00
|
|
|
android:minHeight="@dimen/dashboard_map_toolbar">
|
2018-03-27 17:28:52 +02:00
|
|
|
|
2018-03-28 17:27:20 +02:00
|
|
|
<include layout="@layout/search_text_layout"/>
|
2018-03-27 17:28:52 +02:00
|
|
|
|
2020-03-04 15:12:06 +01:00
|
|
|
</androidx.appcompat.widget.Toolbar>
|
2018-03-27 17:28:52 +02:00
|
|
|
|
2020-03-04 15:12:06 +01:00
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
2018-03-27 17:28:52 +02:00
|
|
|
|
2020-03-04 15:12:06 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-03-27 17:28:52 +02:00
|
|
|
android:id="@+id/recycler_view"
|
|
|
|
android:layout_width="match_parent"
|
2018-04-02 12:11:02 +02:00
|
|
|
android:layout_height="match_parent"
|
2018-04-02 13:37:31 +02:00
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingBottom="@dimen/map_markers_recycler_view_padding_bottom"
|
2018-04-02 12:11:02 +02:00
|
|
|
android:scrollbars="vertical"/>
|
2018-03-27 17:28:52 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|