1

我正在寻找如何将图像分配给可扩展列表的每个子项中的图像视图。

如果有人有任何信息或链接来了解如何做到这一点,我将不胜感激。

expListAdapter =
            new SimpleExpandableListAdapter( 
                main.this,
                createGroupList(),
                R.layout.parentnode,
                new String[] { "day", "number" },
                new int[] { R.id.TextView01, R.id.TextView02 },
                createChildList(),
                R.layout.child_row,
                new String[] { "image", "childName", "date"},
                new int[] { R.id.ImageView01, R.id.childname, R.id.date }
            );
        setListAdapter( expListAdapter );

是我的适配器目前的​​样子,我在定制适配器方面经验很少,所以我不知道从哪里开始。

任何帮助都会很棒:D

4

1 回答 1

0

您将需要扩展 Adapter 类并覆盖 getView 方法。在其中,您可以使用光标查询的结果修改任何字段。

于 2010-04-22T13:46:08.743 回答