Android Studio预览 - 将适配器设置为RecyclerView

时间:2015-09-12 16:58:20

标签: android android-studio

是否可以在布局Adapter文件上设置RecyclerViewxml,以便将其设计为时间?与使用tools:context=my.package.MyFragment呈现其他内容的方式类似。

1 个答案:

答案 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>