3
我正在製作應用程序以顯示1視圖中的所有產品。我想recyclerview顯示所有項目並且不能滾動,只需滾動父視圖(ScrollView)即可。但問題是無法使回收站的高度包裹所有內容。如何讓recyclerview顯示所有項目並且不能滾動
這是我的代碼:
<TextView
android:text="Best seller:"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView4"
android:textColor="#3f3f3f"
android:textSize="18sp" />
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:scrollbars="horizontal"
android:id="@+id/rv_bestSeller"
android:layout_height="200dp" />
<TextView
android:text="New Product"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView5"
android:textSize="18sp"
android:textColor="#3f3f3f" />
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:scrollbars="horizontal"
android:layout_height="200dp"
android:id="@+id/rv_newProduct"/>
<TextView
android:text="All Product"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textView6"
android:textSize="18sp"
android:textColor="#3f3f3f" />
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/rv_allProduct" />
</LinearLayout>
</ScrollView>
nestedscrollview解決我的問題 –
使用setNestedScrollingEnabled (假); – yanivtwin
NestedScrollView和setNestedScrollingEnabled(false)修復了它。豎起大拇指。願原力與你同在。 – ralphgabb