我有一个带有底部容器和底部导航栏的活动。底部板材具有线性布局的回收视图。我想知道如何在recyclerview上最后一项的末尾添加空格,以防止底部导航栏隐藏最后一项。
我尝试将clipToPadding
设置为false,但它不起作用:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/coordinator"
tools:context="com.jaribio.jaribio.MainFragments.HomeFragment">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.github.ybq.android.spinkit.SpinKitView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
android:id="@+id/spin_kit"
style="@style/SpinKitView.Large.CubeGrid"
android:layout_centerHorizontal="true"
android:layout_alignParentTop="true"
android:layout_marginTop="50dp"
app:SpinKit_Color="@color/colorPrimary"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="800dp"
android:visibility="gone"
android:src="@drawable/waiting"
android:id="@+id/question_image"
android:scaleType="centerCrop"
/>
<com.jaribio.jaribio.Utilities.CustomTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="25sp"
android:visibility="gone"
android:textColor="@android:color/white"
android:padding="10dp"
android:layout_marginTop="10dp"
android:layout_centerHorizontal="true"
android:textAlignment="center"
android:gravity="center"
android:id="@+id/textView_header"/>
<com.jaribio.jaribio.Utilities.CustomTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView_header"
android:padding="10dp"
android:visibility="gone"
android:layout_margin="8dp"
android:textColor="@android:color/white"
android:textAlignment="center"
android:gravity="center"
android:textSize="16sp"
android:id="@+id/textView_sub_header"/>
</RelativeLayout>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
app:layout_behavior="@string/bottom_sheet_behavior"
android:id="@+id/home_recyclerview_bottom_sheet"
app:behavior_peekHeight = "312dp"
android:clipToPadding="false"
android:paddingBottom="10dp"
xmlns:app="http://schemas.android.com/apk/res-auto"/>
</android.support.design.widget.CoordinatorLayout>
有解决方法吗?