创建ListView并设置每行中视图的背景颜色

时间:2010-04-04 19:17:32

标签: android

我正在尝试实现一个ListView,该ListView包含左侧包含View的行,然后是右侧的TextView。我希望能够根据它在ListView中的位置更改第一个View的背景颜色。以下是我现在的情况,但它似乎没有任何结果。

public class Routes extends ListActivity {
    String[] ROUTES;
    TextView selection;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        ROUTES = getResources().getStringArray(R.array.routes);

        setContentView(R.layout.routes);
        setListAdapter(new IconicAdapter());
        selection=(TextView)findViewById(R.id.selection);

    }

    public void onListItemClick(ListView parent, View v, int position, long id) {
        selection.setText(ROUTES[position]);

    }

    class IconicAdapter extends ArrayAdapter<String> {
        IconicAdapter() {
            super(Routes.this, R.layout.row, R.id.label, ROUTES);
        }
    }

    public View getView(int position, View convertView, ViewGroup parent) {

        LayoutInflater inflater = getLayoutInflater();
        View row = inflater.inflate(R.layout.row, parent, false);
        TextView label = (TextView) row.findViewById(R.id.label);

        label.setText(ROUTES[position]);

        View icon = (View) row.findViewById(R.id.icon);

        switch(position){

        case 0:
            icon.setBackgroundColor(R.color.Red);
            break;
        case 1:
            icon.setBackgroundColor(R.color.Red);
            break;
        case 2:
            icon.setBackgroundColor(R.color.Green);
            break;
        case 3:
            icon.setBackgroundColor(R.color.Green);
            break;
        case 4:
            icon.setBackgroundColor(R.color.Blue);
            break;
        case 5:
            icon.setBackgroundColor(R.color.Blue);
            break;
        }

        return(row);
    }

}

任何意见都表示赞赏,如果您有任何疑问,请不要犹豫!

谢谢, 罗布

2 个答案:

答案 0 :(得分:2)

发现了两个问题:

1)getView()方法不在我创建的内部类中,因此甚至没有被调用。

2)我不需要调用setBackgroundColor(),而是需要调用setBackgroundResource()。

现在正在运作。

答案 1 :(得分:1)

也许图标完全不透明?没有背景是可见的,因此更改背景颜色将无效?