是否可以在布局Adapter
文件上设置RecyclerView
到xml
,以便将其设计为时间?与使用tools:context=my.package.MyFragment
呈现其他内容的方式类似。
答案 0 :(得分:1)
到目前为止,我知道,您无法真正添加自己的适配器,但可以使用合适的默认预览适配器,指定您的布局项。
类似的东西:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:listitem="@layout/your_item_layout"
/>
</FrameLayout>