Android 如何为listview中的每一行设置不同的背景色?

Android 如何为listview中的每一行设置不同的背景色?,android,listview,Android,Listview,我想在listview的每一行中设置不同的背景色?我使用自定义适配器。它应该在activity加载.static不同颜色行时出现。在getView(…)方法中 if (position == 0) { view.setBackgroundResource(R.drawable.bg_list_even); } else if (position == 1) { view.setBackgroundResource(R.drawable.bg_list_odd); } else..

我想在listview的每一行中设置不同的背景色?我使用自定义适配器。它应该在activity加载.static不同颜色行时出现。

getView(…)方法中

if (position == 0) {
    view.setBackgroundResource(R.drawable.bg_list_even);
} else if (position == 1) {
    view.setBackgroundResource(R.drawable.bg_list_odd);
} else...
更新::

@Override
public View getView(final int position, View convertView, ViewGroup parent) {
    View view = convertView;
    ViewHolder holder;

    if (view == null) {
        LayoutInflater inflater = (LayoutInflater) activity
            .getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        view = inflater.inflate(R.layout.row, null);

        holder = new ViewHolder();
        view.setTag(holder);

    } else {
        holder = (ViewHolder) view.getTag();
    }

    holder.title = (TextView) view.findViewById(R.id.txttitle);
    holder.description = (TextView) view.findViewById(R.id.txtdesc);

    holder.title.setText("Title" + position);
    holder.description.setText("Desc" + position);

    //here set your color as per position

    if (position == 0) {
        view.setBackgroundResource(R.drawable.bg_list_even);
    } else if (position == 1) {
        view.setBackgroundResource(R.drawable.bg_list_odd);
    }
    return view;
}
持有人类别

public class ViewHolder {

    public TextView title;
    public TextView description;
}

正如您所说,您已经为listview使用了自定义适配器,那么您需要做的事情如下。
在适配器的
getView
方法中,您需要设置列表行xml父视图的背景色。

制作一个数组,如下所示,作为列表项的编号,我假设您有五个项

 int[] color_arr={Color.BLUE,Color.CYAN,Color.DKGRAY,Color.GREEN,Color.RED};
然后在custome adapter的getView方法中执行以下操作

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

     LayoutInflater inflater = getLayoutInflater();
     View row=convertView;

     row = inflater.inflate(R.layout.listview_custome, parent, false);
     row.setBackgroundColor(color_arr[position]);// this set background color

     TextView textview = (TextView) row.findViewById(R.id.tv_list);
     ImageView imageview = (ImageView) row.findViewById(R.id.iv_list);

     textview.setText(data_text[position]);
     imageview.setImageResource(data_image[position]);

     return (row);

    }

我不明白你在说什么。我想你需要检查@Samir update,你会得到你的答案。非常感谢你宝贵的建议。谢谢你,如果超过5个项目和颜色只有5个,怎么可能?这是一个很好的解决方案…//奇偶行。。。如果((位置%2)==0){view.setBackgroundResource(R.drawable.bg_list_偶数)}或者{view.setBackgroundResource(R.drawable.bg_list_奇数)}您的网站中有很好的解决方案!
public View getView(int position, View convertView, ViewGroup parent) {

    LayoutInflater inflater = getLayoutInflater();
    View rowView = convertView;

    rowView = inflater.inflate(R.layout.listview_custome, parent, false);
    rowView.setBackgroundColor(color_arr[position]);// this set background color

    TextView textview = (TextView) rowView.findViewById(R.id.tv_list);
    ImageView imageview = (ImageView) rowView.findViewById(R.id.iv_list);

    textview.setText(data_text[position]);
    imageview.setImageResource(data_image[position]);
    if (position == 0) {
        rowView.setBackgroundColor(Color.BLUE);
    }
    else if (position % 2 == 1) {
        rowView.setBackgroundColor(Color.RED);
    }
    else if (position % 2 == 0) {
        rowView.setBackgroundColor(Color.BLUE);
    }
    return (rowView);

}