我试图更改ListView
.
首先,从数据库中捕获它:
ListAdapter adapter = new ArrayAdapter(getApplicationContext(),
android.R.layout.simple_list_item_1, db.getAllApps());
final ListView list = (ListView) findViewById(R.id.ListViewApps);
list.setAdapter(adapter);
然后我会将所有应用程序设置为不同的颜色,如果它们激活了标签
// if app is activated in db --> set another colour in ListView
private void setAppCheck(ListView list) {
List<String> apps = db.getAllApps();
for (int i = 0; i < list.getCount(); i++) {
if (db.appActivated(apps.get(i)).equals("activated")) {
list.setBackgroundColor(0xffaaaaaa); // it changes ALL items...
} else {
// do nothing
}
}
}
并且有问题,list.setItemChecked(i, true)
我可以用特定位置更改它,但是如何更改特定项目的背景颜色ListView
?
希望您能够帮助我。