如何在android中的列表视图中更改自定义适配器中包含的元素

时间:2014-02-04 10:15:44

标签: android xml android-layout listview android-listview

我有使用基础适配器的自定义适配器

现在我想要的是更改列表项背景图像,文本视图中文本的颜色以及图像视图的背景图像。

这些所有元素都包含在列表视图的原始布局中,我在列表视图中对这个原始布局进行了膨胀。

感谢...

1 个答案:

答案 0 :(得分:1)

为列表视图创建实例,如

ListView listview_variable = (ListView)findViewById(your id specified in xml);
listview_variable.setBackground(drawable image);

将要显示的背景图像放在res-> drawable文件夹中。