同样的布局,在别的布局中就可以显示。
布局如下:
<ScrollView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/me_recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</RelativeLayout>
</ScrollView>
其他只是布局显示不全,这个直接不显示,后来发现是因为布局管理器导致,用的NestStaggeredGridLayoutManager就不显示布局,换成了GridLayoutManager就显示。具体原因还不知道,先记录。
网友评论