我正在寻找如何将图像分配给可扩展列表的每个子项中的图像视图。
如果有人有任何信息或链接来了解如何做到这一点,我将不胜感激。
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