在Android开发中使用 listview ExpandableListView实现多选或单选功能?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
listview实现多选、全选、取消全选:
下面是适配器,一开始在适配器的构造函数中,对数据进行初始化,同时定义一个集合用于管理listview的点击;
class BatchAdpter extends BaseAdapter { private HashMap<Integer, Boolean> isSelected; private List<DtGzsCustomer> list; private Context context; @SuppressLint("UseSparseArrays") public BatchAdpter(List<DtGzsCustomer> list,Context context) { this.context=context; this.list = new ArrayList<DtGzsCustomer>(); if (list != null) { this.list.addAll(list); } isSelected = new HashMap<Integer, Boolean>(); initDate(false); } // 初始化isSelected的数据 private void initDate(boolean bool) { for (int i = 0; i < list.size(); i++) { DtGzsCustomer dtGzsCustomer = list.get(i); if (bool) { datas.add(dtGzsCustomer.thread_id); } else { datas.remove(dtGzsCustomer.thread_id); } getIsSelected().put(i, bool); } } public HashMap<Integer, Boolean> getIsSelected() { return isSelected; } public void setIsSelected(HashMap<Integer, Boolean> isSelected) { this.isSelected = isSelected; } public void nodfiyData(List<DtGzsCustomer> list) { if (list != null) { this.list.clear(); this.list.addAll(list); } notifyDataSetChanged(); } @Override public int getCount() { return list.size(); } @Override public Object getItem(int position) { return list.get(position); } @Override public long getItemId(int position) { return position; } @Override public View getView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (convertView == null) { holder = new ViewHolder(); convertView = View.inflate(context, R.layout.no_contact_listview_item, null); holder.name = (TextView) convertView.findViewById(R.id.name); holder.sex = (TextView) convertView.findViewById(R.id.sex); holder.popuse = (TextView) convertView.findViewById(R.id.popuse); holder.tv_phone = (TextView) convertView.findViewById(R.id.tv_phone); holder.allocation = (TextView) convertView.findViewById(R.id.allocation); holder.time = (TextView) convertView.findViewById(R.id.time); holder.btn_dis = (Button) convertView.findViewById(R.id.btn_dis); holder.btn_allot = (Button) convertView.findViewById(R.id.btn_allot); holder.btn_telephone = (Button) convertView.findViewById(R.id.btn_telephone); holder.btn_follow = (Button) convertView.findViewById(R.id.btn_follow); holder.cb = (CheckBox) convertView.findViewById(R.id.cb); holder.allocation.setVisibility(View.INVISIBLE); convertView.setTag(holder); } else { holder = (ViewHolder) convertView.getTag(); } DtGzsCustomer data = list.get(position); SalesTools.setTextViewText(holder.name, data.p_customer_name); SalesTools.setTextViewText(holder.sex, data.gender); SalesTools.setTextViewText(holder.popuse, data.purpose_series); SalesTools.setTextViewText(holder.tv_phone, data.mobile_no); SalesTools.setTextViewText(holder.allocation, data.thread_contact_state); SalesTools.setTextViewText(holder.time, data.thread_create_date); holder.btn_dis.setVisibility(View.INVISIBLE); holder.btn_allot.setVisibility(View.INVISIBLE); holder.btn_telephone.setVisibility(View.INVISIBLE); holder.btn_follow.setVisibility(View.INVISIBLE); holder.cb.setVisibility(View.VISIBLE); HashMap<Integer, Boolean> isSelected2 = getIsSelected(); Boolean boolean1 = isSelected2.get(position); if (boolean1 != null) { holder.cb.setChecked(boolean1); } // 初始化的时候做处理,如果管理标记的集合中没有该pos则设为false如果有则设为true if (adapter != null) { HashMap<Integer, Boolean> isSelected = adapter.getIsSelected(); if (isSelected != null && isSelected.containsKey(position)) { holder.cb.setChecked(isSelected.get(position)); } else { holder.cb.setChecked(false); } } return convertView; } } class ViewHolder { TextView name, sex, popuse, tv_phone, allocation, time; Button btn_dis, btn_allot, btn_telephone, btn_follow; CheckBox cb; }
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1148
183.71 KB下载数642
644.84 KB下载数2756
相关文章
发现更多好内容猜你喜欢
AI推送时光机Android ListView实现单选及多选等功能示例
后端开发2023-05-30
Android开发中实现单选或多选对话框的方法
后端开发2023-05-31
在html页面的表单选项中怎么实现多选功能
后端开发2024-04-02
怎么在Android中利用AlertDialog实现一个多选框功能
后端开发2023-05-31
Android中怎么利用RadioButton控件实现多选一功能
后端开发2023-05-30
Android开发中利用ListView怎么实现一个分页加载功能
后端开发2023-05-31
怎么在Android应用中实现一个选项卡功能
后端开发2023-05-31
在Android开发中通过使用View实现进度条功能
后端开发2023-05-31
Android开发中项目实现一个自定义Tab选项卡功能
后端开发2023-05-31
android在连拍菜单中增加连拍张数选项功能实现代码
后端开发2022-06-06
在Android开发中利用ViewPager实现一个轮播功能
后端开发2023-05-31
在Android开发中利用MediaRecorder实现一个录音功能
后端开发2023-05-31
在android中使用GridView实现一个查看更多功能
后端开发2023-05-31
android开发中使用Handler怎么实现预加载功能
后端开发2023-05-31
在Android 开发中使用camera怎么实现一个人脸识别功能
后端开发2023-05-31
在Android 开发中使用Activity怎么实现一个隐式跳转功能
后端开发2023-05-31
咦!没有更多了?去看看其它编程学习网 内容吧