gpt4 book ai didi

android-layout - 持久覆盖 Bottom Sheet 的聚醚醚酮涵盖了最后一个回收站查看项目

转载 作者:行者123 更新时间:2023-12-03 10:11:36 25 4
gpt4 key购买 nike

我在布局中实现了一个持久的 Bottom Sheet -无法完全隐藏但总是从底部偷看的工作表。
但是它涵盖了最后一个RecyclerView项。
我如何以这样的方式设置布局,使其不会隐藏最后一个项目?

截屏:-

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.widget.NestedScrollView
android:id="@+id/nestedScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v7.widget.RecyclerView
android:id="@+id/recylerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_weight="1" />
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>

<!-- Buttom Sheet -->
<android.support.v7.widget.LinearLayoutCompat
android:id="@+id/bottom_sheet"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:orientation="vertical"
app:behavior_hideable="true"
app:behavior_peekHeight="56dp"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_gravity="center_vertical"
android:background="@android:color/holo_green_dark"
android:orientation="horizontal"
android:padding="10dp"
android:weightSum="3">

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_weight="2"
android:text="Submit Report"/>

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:text="8/10"/>
</LinearLayout>
<!-- Other things to add -->
</android.support.v7.widget.LinearLayoutCompat>

</android.support.design.widget.CoordinatorLayout>
</FrameLayout>

最佳答案

真傻发布问题后,我自己就知道解决方案。 :)
只需将 android:paddingBottom 属性添加到R​​ecyclerView。

<android.support.v7.widget.RecyclerView
android:id="@+id/studentListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="56dp"/>

关于android-layout - 持久覆盖 Bottom Sheet 的聚醚醚酮涵盖了最后一个回收站查看项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56142643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com