[android] Fixed background in Bookmarks list layout.

This commit is contained in:
velichkomarija 2020-10-08 16:44:22 +03:00 committed by Alexey
parent aca8c8c832
commit 173230e68a
2 changed files with 11 additions and 6 deletions

View file

@ -7,23 +7,27 @@
android:layout_height="match_parent">
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_height="match_parent"
android:background="?windowBackgroundForced"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:focusableInTouchMode="true">
android:layout_height="wrap_content"
android:focusableInTouchMode="true"
android:orientation="vertical">
<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" />
android:layout_height="wrap_content"
android:background="?cardBackground"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
android:layout_height="wrap_content"
android:background="?cardBackground"/>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
<com.google.android.material.floatingactionbutton.FloatingActionButton

View file

@ -4,6 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?cardBackground"
android:orientation="vertical">
<ImageView
android:id="@+id/guide_image"