forked from organicmaps/organicmaps
[android] Fixed layouts for guide page.
This commit is contained in:
parent
675ff3f4e3
commit
17d2e1e0ce
3 changed files with 10 additions and 20 deletions
|
@ -8,21 +8,23 @@
|
|||
<androidx.core.widget.NestedScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
android:focusableInTouchMode="true">
|
||||
<include
|
||||
android:id="@+id/guide_info"
|
||||
layout="@layout/guide_info_layout"
|
||||
mapsme:layout_constraintTop_toTopOf="parent"
|
||||
tools:layout_editor_absoluteX="0dp" />
|
||||
layout="@layout/item_guide_info" />
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/collections_recycler"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/recycler"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
mapsme:layout_constraintTop_toBottomOf="@id/guide_info" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
android:layout_height="wrap_content" />
|
||||
</LinearLayout>
|
||||
</androidx.core.widget.NestedScrollView>
|
||||
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||
android:id="@+id/fabViewOnMap"
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
<?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="wrap_content">
|
||||
<include
|
||||
android:id="@+id/guide_info"
|
||||
layout="@layout/item_guide_info" />
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/collections_recycler"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content" />
|
||||
</LinearLayout>
|
|
@ -15,6 +15,7 @@
|
|||
android:layout_height="match_parent"
|
||||
android:layout_alignParentStart="true"
|
||||
android:gravity="center_vertical"
|
||||
android:fontFamily="@string/robotoMedium"
|
||||
android:textAppearance="?fontHeadline6"
|
||||
tools:text="@string/categories" />
|
||||
<TextView
|
||||
|
|
Loading…
Add table
Reference in a new issue