同樣的布局,在別的布局中就可以顯示。
布局如下:
<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>
其他只是布局顯示不全,這個直接不顯示,后來發(fā)現(xiàn)是因為布局管理器導(dǎo)致,用的NestStaggeredGridLayoutManager就不顯示布局,換成了GridLayoutManager就顯示。具體原因還不知道,先記錄。