尝试通过验证条件(if (vehicleColor[i].equals("1")) )等来显示基于颜色代码的列表。如果我正在关闭 for 循环,则使用此代码段 (getListView().setBackgroundColor(Color.WHITE);) 的单色代码可以正常工作。我需要根据颜色代码显示列表。需要帮助的家伙。
私人无效showColouredList(){
final ListAdapter adapter = new ArrayAdapter<String>(this,
R.layout.list_items, R.id.label, vehicleList);
setListAdapter(adapter);
getListView().setTextFilterEnabled(true);
getListView().setDividerHeight(1);
// getListView().setBackgroundColor(Color.WHITE);
for (int i = 0; i < vehicleList.length; i++) {
System.out.println("--" + vehicleColor[i]);
if (vehicleColor[i].equals("1")) {
System.out.println("ListColour");
getListView().getChildAt(i).setBackgroundColor(Color.GREEN); // giving NullPointerException
} else if (vehicleColor[i].equals("2")) {
getListView().getChildAt(i).setBackgroundColor(Color.RED);
} else if (vehicleColor[i].equals("3")) {
getListView().getChildAt(i).setBackgroundColor(Color.YELLOW);
} else if (vehicleColor[i].equals("4")) {
getListView().getChildAt(i).setBackgroundColor(Color.GRAY);
}
}
getListView().setPadding(5, 10, 0, 10);
getListView().setCacheColorHint(Color.BLUE);
getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);
getListView().setEnabled(true);
getListView().setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int index,
long arg3) {
// TODO Auto-generated method stub
Intent secondActivity = new Intent(First.this,
SecondActivity.class);
Utility.setDeviceId(listBean.getVehicleDeviceIdArr()[index]);
Utility.setWindowTitle(list[index]);
startActivity(secondActivity);
}
});
}