1

我有一个 ListView,我想根据 ArrayList<Integer>项目的位置是否存在于数组中为每个项目设置不同的颜色,该项目的背景将为绿色,否则应为红色。我曾经SetListColor这样做,但它不起作用。

public class createtarget extends ListActivity
{

         String [] Target;
    ListView lstView;
    public static ArrayList<Integer> coloredItems;


    @Override
    public void onCreate(Bundle savedInstanceState) 
    {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.createtarget);

        coloredItems = new ArrayList<Integer>();
        coloredItems.add(1);

        lstView = getListView();    
        lstView.setChoiceMode(ListView.CHOICE_MODE_SINGLE);        
        lstView.setTextFilterEnabled(true);

        SetListColor(this.findViewById(android.R.id.content)); // Get View of ListView

        Target=new String []{"A","B","C"};

        setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_checked, Target));

    }


public void SetListColor(View v)
     {
        for(int i=0;i<lstView.getCount();i++)
        {   
            System.out.println("Item is: "+i);
         if(createtarget.coloredItems.contains(i))
                    v.setBackgroundColor(Color.GREEN);
         else
             v.setBackgroundColor(Color.Red); 
        }
     }
4

3 回答 3

2

为了更改列表项,您需要对 ListAdapter 进行操作,而不是对整个 List 进行操作。

只需扩展您的ArrayAdapter并覆盖该方法

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

在返回之前更改视图的颜色(使用位置找出什么是什么)

该方法的代码应该看起来更像这样(这会根据单元格的位置(偶数或奇数)改变颜色):

@Override
public View getView (int position, View convertView, ViewGroup parent) {
    View v = super.getView(position, convertView, parent);
    if(position%2 == 0)
        v.setBackgroundColor(Color.RED);        
    else
        v.setBackgroundColor(Color.WHITE);
    return v;
}

注意:此代码未经测试

希望这可以帮助

编辑:更正了对 getView 的调用以应用于超级。感谢指出这一点的问题的发布者(不知何故,他的编辑被拒绝了,不应该被拒绝)。

于 2013-05-28T17:58:55.490 回答
1

使用 Base Adepter而不是修复您的视图运行时。

并参考那个问题

Android:使用 ArrayAdapter 在 ListView 中替换颜色

于 2013-05-28T18:23:53.157 回答
1

我不确定在列表视图项目上应用颜色的样式,但一种编写自定义适配器和设置 rowView BackgroundColor 之类的通用方法。

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


        if(v!= null)
        {
         for(int i=0;i<lstView.getCount();i++){
           if(createtarget.coloredItems.contains(i))
                v.setBackgroundColor(Color.GREEN);
           }else{
                v.setBackgroundColor(Color.Red); 
           }
         }
        }           
   return v;
}
于 2013-05-28T18:10:46.220 回答