java – 将TextView附加到RecyclerView

前端之家收集整理的这篇文章主要介绍了java – 将TextView附加到RecyclerView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我意识到以下是不正确的,但我想你可以将其视为伪代码.我想知道,我如何将一个整体布局附加到我的RecyclerView中,以便当我向下滚动时,布局会随之滚动.目前,RecyclerView上面的TextView已经在屏幕上固定,而RecyclerView中的所有数据都是可滚动的.当用户向下滚动页面时,我希望TextView移出视线.如果您看到Instagram,您的画廊顶部的所有用户个人资料信息将在您向下滚动页面时消失.我该怎么做?如何以编程方式添加TextView?
<TextView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="Hello!" />

<android.support.v7.widget.RecyclerView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginBottom="?android:attr/actionBarSize"
    android:padding="@dimen/item_margin"
    android:id="@+id/recycler_view"
    android:clipToPadding="false">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="Hello!" />

</android.support.v7.widget.RecyclerView>

解决方法

原文链接:https://www.f2er.com/java/122744.html

猜你在找的Java相关文章