android中ListView的setItemChecked方法 实现多选

1.要在XML中为listView设置choiceMode  为singleChoice或者mutipleChoice


也可以在代码中设置 listView.setChoiceMode(int mode);

2.listView的item一定要是checkable的。否则不会生效。这一点也是从网上看的资料,具体没有研究了。

最常见还是集成baseAdapter 使用的自定义布局这种情况,请看第三点。

3.对于自定义的xml布局,item的布局需要实现Checkable接口。例如常见的item根布局为LinearLayout,则我们需要自定义一个LinearLayout

[java]  view plain  copy
  1. public class CheckableLinearLayout extends LinearLayout implements Checkable {  
  2.     private boolean isChecked = false;  
  3.   
  4.     public CheckableLinearLayout(Context context, AttributeSet attrs, int defStyle) {  
  5.         super(context, attrs, defStyle);  
  6.     }  
  7.   
  8.     public CheckableLinearLayout(Context context, AttributeSet attrs) {  
  9.         super(context, attrs);  
  10.     }  
  11.   
  12.     public CheckableLinearLayout(Context context) {  
  13.         super(context);  
  14.     }  
  15.   
  16.     @Override  
  17.     public void setChecked(boolean checked) {  
  18.         isChecked = checked;  
  19.         changeColor(checked);  
  20.     }  
  21.   
  22.     @Override  
  23.     public boolean isChecked() {  
  24.   
  25.         return isChecked;  
  26.     }  
  27.   
  28.     @Override  
  29.     public void toggle() {  
  30.         this.isChecked = !this.isChecked;  
  31.         changeColor(this.isChecked);  
  32.   
  33.     }  
  34.   
  35.     private void changeColor(boolean isChecked) {  
  36.         //根据check的状态切换颜色  
  37.         if (isChecked) {  
  38.             setBackgroundColor(getResources().getColor(android.R.color.holo_blue_light));  
  39.         } else {  
  40.             setBackgroundColor(getResources().getColor(android.R.color.transparent));  
  41.         }  
  42.     }  
  43.   
  44. }  
然后在xml中使用该布局替代原生的LinearLayout

你可能感兴趣的:(andrond综合,Android普罗米修斯)