Как использовать androidx.recyclerview.widget.RecyclerView с инструментами:listitem?
Как пользоваться androidx.recyclerview.widget.RecyclerView
с tools:listitem
? У меня есть этот макет:
<?xml version="1.0" encoding="utf-8"?>
<androidx.recyclerview.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/recyclerViewActors"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
tools:layoutManager="androidx.recyclerview.widget.GridLayoutManager"
tools:listitem="@layout/list_item_actor"
tools:itemCount="5"
tools:orientation="horizontal"
tools:scrollbars="horizontal"
tools:spanCount="2"/>
но вкладка Дизайн не показывает предварительный просмотр:
И если я изменю androidx.recyclerview.widget.RecyclerView
в этом макете ListView
, превью работает:
1 ответ
Из вашего кода кажется, что ваш просмотрщик ресурсов является корневым элементом XML и в нем отсутствует ссылка на xmlns:tools
Попробуйте использовать другой корневой элемент, как макет ограничения или даже просто макет в соответствии с примером Google Sunflowerapp:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/plant_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingLeft="@dimen/margin_normal"
android:paddingRight="@dimen/margin_normal"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
tools:context="com.google.samples.apps.sunflower.GardenActivity"
tools:listitem="@layout/list_item_plant" />
</layout>
Использование
android.support.v7.widget.RecyclerView android.support.v7.widget.GridLayoutManager вместо
androidx.recyclerview.widget.RecyclerView androidx.recyclerview.widget.GridLayoutManager