[android] Made guides gallery width wrap content to avoid overlapping the zoom button when gallery is empty

This commit is contained in:
alexzatsepin 2020-09-17 18:07:31 +03:00 committed by mpimenov
parent a1b8bf0598
commit cb6f3159fd

View file

@ -3,7 +3,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/guides_gallery_bottom_sheet"
android:layout_width="match_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:orientation="vertical"
@ -18,6 +18,6 @@
app:layout_behavior="@string/placepage_behavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/guides_gallery"
android:layout_width="match_parent"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>