scrollView嵌套recyclerView 顯示不全可以將recyclerView使用RelativeLayout包起來,就可以全部撐開
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="15dp"
android:layout_marginTop="15dp"/>
recyclerView設置不能滑動:
recyclerView.setNestedScrollingEnabled(false);