列表视图显示对象而不是android中的行

时间:2012-03-03 11:04:42

标签: android

我有一个要求,我必须生成一个列表视图,每行包含一个图标和一个名称。代码看起来像这样。

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>

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

1 个答案:

答案 0 :(得分:1)

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

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

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