底部工作表在Recyclerview上方保持视图 - 视图开始滚动出视图

时间:2016-10-20 15:00:13

标签: android material-design bottom-sheet

我遇到了让底页工作正常的问题

在底部的工作表中,我在RecyclerView(本例中为TextView)上面有一个项目 - 我想滚动它们,所以它们都包含在NestedScrollView中。

问题是,当屏幕加载时,TextView被隐藏,我必须向下滚动RecyclerView以显示它,然后才能再次向上滚动整个视图以使底部图层覆盖屏幕的其余部分。 / p>

如何才能使TextView已经在视图中?

```     

<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:behavior_hideable="false"
    app:behavior_peekHeight="auto"
    app:layout_behavior="@string/bottom_sheet_behavior">
    <android.support.v4.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true">
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
            <TextView
                android:layout_width="match_parent"
                android:layout_height="100dp"
                android:background="@color/colorPrimaryDark"
                android:gravity="center"
                android:text="GYUHGHJG"/>
            <android.support.v7.widget.RecyclerView
                android:id="@+id/recyclerview"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"/>
        </LinearLayout>
    </android.support.v4.widget.NestedScrollView>
</FrameLayout>

``` 它是如何开始的 how it starts 向下滚动后它看起来如何(它应该如何开始) how it looks after scrolling it down and how it SHOULD start

1 个答案:

答案 0 :(得分:1)

我尝试了一种解决方法,它有效! 它不是有效的解决方案,但没有其他选择.. 在您的示例中,尝试使用相对布局而不是线性布局。并为Recycler视图提供顶部填充。

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <TextView
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:background="@color/colorPrimaryDark"
        android:gravity="center"
        android:text="GYUHGHJG"/>
    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="25dp"/>
</RelativeLayout>