gpt4 book ai didi

android - ListView 在 android 中显示对象而不是行

转载 作者:行者123 更新时间:2023-11-30 04:18:58 26 4
gpt4 key购买 nike

我有一个要求,我必须生成一个 ListView ,每行都有一个图标和一个名称。代码看起来像这样。

public class MyListActivity extends ListActivity {
...
...

ArrayList<StringBuilder> categories = new ArrayList<StringBuilder>();
categories.add(new StringBuilder("xyaq"));
categories.add(new StringBuilder("wers"));
categories.add(new StringBuilder("test2"));
categories.add(new StringBuilder("asfda"));
categories.add(new StringBuilder("hoyio"));

ArrayList<RelativeLayout> departments = new ArrayList<RelativeLayout>();

for (StringBuilder category : categories) {
RelativeLayout categoryRow = (RelativeLayout) mInflater.inflate(
R.layout.products_row, null);

ImageView tempImage = (ImageView) categoryRow.getChildAt(0);
tempImage.setBackgroundResource(R.drawable.ic_launcher);
TextView tempTextView = (TextView) categoryRow.getChildAt(1);
tempTextView.setText(category);
departments.add(categoryRow);
}
ArrayAdapter<RelativeLayout> departmentAdaptor = new ArrayAdapter<RelativeLayout>(
this, android.R.layout.simple_list_item_1, departments);

setListAdapter(departmentAdaptor);
}

products_row.xml如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ImageView
android:id="@+id/deptIcon"
android:layout_width="64dp"
android:layout_height="64dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#FFFFFF"
android:clickable="false"
android:contentDescription="@string/hello"
android:scaleType="fitXY" />

<TextView
android:id="@+id/deptName"
android:layout_width="fill_parent"
android:layout_height="54dp"
android:layout_alignLeft="@id/deptIcon"
android:layout_marginLeft="80dp"
android:gravity="left|center"
android:textSize="25dp"
android:textStyle="bold" />

</RelativeLayout>

我面临的问题是我看不到带有图像和相应文本的行。相反,它显示相关布局对象的列表。

最佳答案

这不是实现您想要实现的目标的正确方法。您需要为此创建自定义适配器。

查看此链接并检查我的答案: Listview with Image,Text and Checkbox

有完整的 Activity 代码并包含一个扩展 ArrayAdapte 的内部类 MyAdapter。

关于android - ListView 在 android 中显示对象而不是行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9545582/

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