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);