我希望了解如何将图像分配给可扩展列表的每个子项中的imageview。
如果有人有任何信息或链接来了解如何做到这一点,我将非常感激。
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
答案 0 :(得分:0)
您需要扩展Adapter类并覆盖getView方法。 在其中,您可以使用Cursor查询的结果修改任何字段。