RecyclerView默认的在预览界面显示不直观, 只是粗略显示item1, 2, 3
加上tools命名空间后使用以下属性可以得到直观的预览
tools:layoutManager
tools:listitem
tools:spanCount
如:
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layoutManager="GridLayoutManager"
tools:listitem="@layout/item"
tools:spanCount="2" />