gpt4 book ai didi

android - 如何通过工具:listitem?使用androidx.recyclerview.widget.RecyclerView

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:29:14 30 4
gpt4 key购买 nike

如何使用 androidx.recyclerview.widget.RecyclerViewtools: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"/>

但是设计标签不显示预览:

enter image description here

如果我将此布局中的 androidx.recyclerview.widget.RecyclerView 更改为 ListView,则预览有效:

enter image description here

最佳答案

从您的代码看来,您的 recyclerview 是 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 - 如何通过工具:listitem?使用androidx.recyclerview.widget.RecyclerView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51687173/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com