gpt4 book ai didi

android - 如何将列表的最后一项保留在 Bottom Sheet 上方

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:45:44 24 4
gpt4 key购买 nike

我正在构建一个音乐播放器。我正在使用 bottomsheet。它工作正常并且有其窥视高度,但它覆盖了 RecyclerView 的最后一项。如何在 BottomSheet View 上方设置 recyclerView。请帮助我。

这是我的 MainActivity XML

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout 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:id="@+id/tab_root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
/>

<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/orange"
app:tabIndicatorColor="@color/colorAccent"
app:tabIndicatorHeight="3dp"
app:tabMode="fixed"
app:tabTextColor="@color/white" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />

<!-- View useed to load other fragments so that my Bottomsheet can be seen above other fragments -->
<FrameLayout
android:id="@+id/fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<!-- BottomSheet layout-->
<FrameLayout
android:id="@+id/framelayouts"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:elevation="8dp"
android:clickable="true"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">

<include layout="@layout/layout_player_bottomsheet" />
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>

请建议要做什么。

最佳答案

在你的 recyclerView 中添加这两个属性。

android:clipToPadding="false"
android:paddingBottom="60dp"

关于android - 如何将列表的最后一项保留在 Bottom Sheet 上方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36947099/

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