Bottomsheet总是隐藏我的Recyclerview的最后一个元素

时间:2018-02-25 14:41:37

标签: android user-interface android-recyclerview android-coordinatorlayout bottom-sheet

我的recyclerview项目是动态加载的。底页UI是一个小型音乐播放器。我想在音乐播放器UI上方显示recyclerview。但目前,音乐播放器UI隐藏了recyclerview的最后一个元素。音乐播放器的ui是动态隐藏/显示的。您能否告诉我如何在不受底部用户界面(音乐播放器)阻碍的情况下显示Recyclerview的元素? 这是我的布局

<?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/main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="@dimen/detail_backdrop_height"
        android:fitsSystemWindows="true"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginEnd="64dp"
            app:expandedTitleMarginStart="48dp"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <ImageView
                android:id="@+id/backdrop"
                android:layout_width="200dp"
                android:layout_height="match_parent"
                android:layout_gravity="center"
                android:fitsSystemWindows="true"
                android:scaleType="fitCenter"
                android:transitionName="@string/transition_album_cover"
                app:layout_collapseMode="parallax" />

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:layout_collapseMode="pin"
                app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

        </android.support.design.widget.CollapsingToolbarLayout>

    </android.support.design.widget.AppBarLayout>


    <android.support.v7.widget.RecyclerView
        android:id="@+id/my_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="vertical"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <FrameLayout
        android:id="@+id/bottom_ui_container"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_behavior="@string/bottom_sheet_behavior">

        <include layout="@layout/music_player_ui" />
    </FrameLayout>


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

3 个答案:

答案 0 :(得分:0)

尝试将RecyclerView的高度设置为“ 0dip”,如果使用ConstraintLayout,则将RecyclerView限制在父视图的顶部和底部。

答案 1 :(得分:0)

您可以通过将回收器视图放在框架布局中来解决此问题。

b = ('''def peter:
if nname == "peter":
    return "you are a cool boy"
else:
    return "you are a not cool boy"
def weight:
if weight > 100:
    return "you weight too much"
else:
    return
     "you weight good"
'''
exec(b)

答案 2 :(得分:0)

只需将 paddingBottom 和 clipToPadding="false" 设置为 recyclerView

<android.support.v7.widget.RecyclerView
        android:id="@+id/my_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:clipToPadding="false"
        android:paddingBottom="your_music_player_ui_height" />