OsmAnd/OsmAnd/res/layout/fragment_wikivoyage_search_dialog.xml

35 lines
1.1 KiB
XML
Raw Normal View History

<?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"
android:orientation="vertical">
2020-03-04 15:12:06 +01:00
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
2020-03-04 15:12:06 +01:00
<androidx.appcompat.widget.Toolbar
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"
android:minHeight="@dimen/dashboard_map_toolbar">
2018-03-28 17:27:20 +02:00
<include layout="@layout/search_text_layout"/>
2020-03-04 15:12:06 +01:00
</androidx.appcompat.widget.Toolbar>
2020-03-04 15:12:06 +01:00
</com.google.android.material.appbar.AppBarLayout>
2020-03-04 15:12:06 +01:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
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"
android:scrollbars="vertical"/>
</LinearLayout>