gpt4 book ai didi

android - 什么是工具 :itemCount equivalent for ExpandableListView?

转载 作者:太空狗 更新时间:2023-10-29 14:37:45 24 4
gpt4 key购买 nike

RecyclerView offers a convenient way to preview the layout在 Android Studio 的 Design 选项卡中:

tools:itemCount

ExpandableListView 是否有任何等价物? ?

我假设答案是“否”,因为我发现了一个不同的工具,tools:listitem适用于 ExpandableListView .我相信这是由其 documentation 解释的,“用于:<AdapterView>(和子类,如 <ListView>)”。

最佳答案

是的,你是对的。每个 tools: 属性属于不同的类。

您可以像下面这样整合这两个属性。

主要布局:

<RelativeLayout 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"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:paddingTop="8dp"
android:paddingBottom="8dp"
tools:context=".MainActivity">

<ExpandableListView
android:id="@+id/expandableListView"
tools:listitem="@layout/sample_list_item" //notice this line
android:layout_height="match_parent"
android:layout_width="match_parent"
android:indicatorLeft="?android:attr/expandableListPreferredItemIndicatorLeft"
android:divider="@android:color/darker_gray"
android:dividerHeight="0.5dp" />

</RelativeLayout>

sample_list_item 布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:itemCount="3" //notice this line
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>

现在您将在预览中看到如下图: enter image description here

注意显示了三个项目。

关于android - 什么是工具 :itemCount equivalent for ExpandableListView?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53290502/

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