簡體   English   中英

這個不會滾動的RecyclerView ViewHolder ScrollView布局有什么問題

[英]What is wrong with this RecyclerView ViewHolder ScrollView layout that wont scroll

我在我的RecyclerView ViewHolder布局中,嘗試放置android.widget.ScrollView來滾動內容,如下所示:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="8dp"
    android:padding="4dp">

    <android.widget.ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:scrollbars="vertical">

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

            <TextView
                android:id="@+id/title_text"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:padding="10dp"
                android:text="SOME TEXT"
                android:textStyle="bold"/>

            <TextView
                android:id="@+id/descr_text"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@id/title_text"
                android:padding="10dp"
                android:text="SOME TEXT"
                android:textStyle="bold"/>

            <com.github.rahatarmanahmed.cpv.CircularProgressView
                android:id="@+id/progress_view"
                android:layout_width="40dp"
                android:layout_height="40dp"
                android:layout_centerInParent="true"
                android:visibility="gone"
                app:cpv_indeterminate="true"/>
        </RelativeLayout>
    </android.widget.ScrollView>
</LinearLayout>

問題是沒有任何反應,我無法滾動。 任何建議將不勝感激?

由於您的RecyclerView已經在滾動,因此您可能需要NestedScrollview

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM