zoukankan      html  css  js  c++  java
  • 解决checkbox在滑动时选中状态错乱的问题

    现象:listview 中,如果有10项,其中手机屏幕显示1-6项,其余的7-10项在屏幕中不可见,得向下滚动后才能看到,这个时候,如果选中1、2项,再滚动到7-10项,之后再滚动回来1-6项,就发现1、2项并未被选中。

    解决方法: 编写自定义的Adapter

    [java] view plain copy
     在CODE上查看代码片派生到我的代码片
    1. public class TestAdapter extends ArrayAdapter<String> {  
    2.     private int resource;  
    3.     private LayoutInflater inflater;  
    4.     private boolean[] checks; //用于保存checkBox的选择状态  
    5.   
    6.     public TestAdapter(Context context, int resource, List<String> list) {  
    7.         super(context, resource, list);  
    8.         checks = new boolean[list.size()];  
    9.         this.resource = resource;  
    10.         inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);  
    11.     }  
    12.   
    13.     @Override  
    14.     public View getView(int position, View convertView, ViewGroup parent) {  
    15.         ViewHolder holder = null;  
    16.         if(convertView == null){  
    17.             convertView = inflater.inflate(resource, null);  
    18.             holder = new ViewHolder();  
    19.             holder.title = (TextView) convertView.findViewById(R.id.title);  
    20.             holder.checkBox = (CheckBox) convertView.findViewById(R.id.checkBox);  
    21.             convertView.setTag(holder);  
    22.         }else {  
    23.             holder = (ViewHolder) convertView.getTag();  
    24.         }  
    25.         holder.title.setText(getItem(position));  
    26.         final int pos  = position; //pos必须声明为final  
    27.         holder.checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){  
    28.             @Override  
    29.             public void onCheckedChanged(CompoundButton buttonView,boolean isChecked) {  
    30.                 checks[pos] = isChecked;  
    31.             }});  
    32.         holder.checkBox.setChecked(checks[pos]);  
    33.         return convertView;  
    34.     }  
    35.     static class ViewHolder {  
    36.         TextView title;  
    37.         CheckBox checkBox;  
    38.     }  
    39. }  
  • 相关阅读:
    #翻译# 深入JavaScript的Unicode难题(上)
    深入 JavaScript(6)
    Angular service, 服务
    [译] 什么是移动友好的
    [译] 新手和老手都将受益的JavaScript小技巧
    Create XHR
    计算新浪Weibo消息长度
    SpringMVCDemo中,遇到的问题(四) 之分页功能
    为什么要用where 1=1?
    SpringMVCDemo中,遇到的问题(二)之mybatis中的mapper映射
  • 原文地址:https://www.cnblogs.com/vegetate/p/9997302.html
Copyright © 2011-2022 走看看