标签: android android-recyclerview scrollview android-5.0-lollipop android-6.0-marshmallow
Android RecyclerView仅显示棉花糖上的第一项,但它在棒棒糖和棒上工作正常。显示所有项目。 请注意,我在scrollview中使用了recyclerview,所以我做了
recyclerView.setNestedScrollingEnabled(false);
仍然可以和棒棒糖一起使用,但它不适合棉花糖。
答案 0 :(得分:2)
在项目布局中将android:layout_height="wrap_content"设置为根元素。
android:layout_height="wrap_content"
这可以解决问题。