我在抽屉式布局设置中有一堆不同类型的片段,其中有垂直的recyclerview时工具栏会折叠,而没有垂直的recyclerview时工具栏会保持刚性。但是,我有一个片段,其中recyclerview是水平的,在这里我不希望工具栏折叠。我该怎么做?
我的XML如下:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorPrimaryDark"
tools:context=".ui.RestaurantFragment">
<com.google.android.gms.maps.MapView
android:id="@+id/restaurant_list_map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<android.support.v7.widget.RecyclerView
android:id="@+id/restaurant_pickup_recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:background="@color/transparent"
app:layout_constraintBottom_toBottomOf="@+id/restaurant_list_map"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</android.support.constraint.ConstraintLayout>