Android:列表样式

时间:2012-08-07 10:21:26

标签: android listview

尝试通过验证条件(if(vehicleColor [i] .equals(“1”)))等基于颜色代码显示List。如果我正在关闭循环,使用此代码段(getListView()。setBackgroundColor(Color.WHITE);),代码可以正常使用单色。我需要根据颜色代码显示List。需要帮助的人。

private void 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);

        }
    });

}

1 个答案:

答案 0 :(得分:0)

你可以使用listAdapter,在getView()中完成你的工作;列表(数组)适配器的方法。