Answers:
@oRRs是正确的!
我正在使用Android Studio 1.4 RC2,现在您可以指定任何自定义布局。
我尝试了自定义CardView,它可以工作。
tools:listitem="@android:layout/simple_list_item_checked"
tools:orientation="horizontal"
tools:orientation="horizontal"
或android:orientation="horizontal"
我还必须app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
根据stackoverflow.com/questions/35681433/…
tools
名称空间可启用设计时功能(例如,在片段中显示哪种布局)或编译时行为(例如,将哪种收缩模式应用于XML资源),它确实是一项功能强大的功能,正在开发中,并且您不必每次都编译代码是时候看到变化了
AndroidX [关于]和GridLayoutManager
implementation 'androidx.recyclerview:recyclerview:1.1.0'
<androidx.recyclerview.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
tools:listitem="@layout/item"
tools:itemCount="10"
tools:orientation="vertical"
tools:scrollbars="vertical"
tools:spanCount="3"/>
支持和LinearLayoutManager
implementation 'com.android.support:recyclerview-v7:28.0.0'
<android.support.v7.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layoutManager="android.support.v7.widget.LinearLayoutManager"
tools:listitem="@layout/item"
tools:itemCount="3"
tools:orientation="horizontal"
tools:scrollbars="horizontal" />
引入的另一个很酷的功能Android studio 3.0
是通过工具属性预定义数据,以使用资源轻松可视化布局结构@tools:sample/*
item.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="100dp"
android:layout_height="150dp"
android:layout_marginRight="15dp"
android:layout_marginBottom="10dp"
android:orientation="vertical"
tools:background="@tools:sample/backgrounds/scenic">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/colorWhite"
tools:text="@tools:sample/first_names" />
</FrameLayout>
结果:
listitem
选项,我只需将其键入xml代码即可!
首先,在项目XML中添加以下行,以在编辑项目时预览列表:
tools:showIn="@layout/activity_my_recyclerview_item"
然后,在您的RecyclerView XML中添加以下行以预览您的商品在列表中的外观:
tools:listitem="@layout/adapter_item"
从Android Studio 1.3.1开始,它在预览中显示默认列表项,但尚未允许您指定自己的列表项。希望它会来。