服务器之家:专注于VPS、云服务器配置技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Android - Android编程之listView中checkbox用法实例分析

Android编程之listView中checkbox用法实例分析

2021-05-09 20:24chenguang79 Android

这篇文章主要介绍了Android编程之listView中checkbox用法,结合实例形式分析了Android中checkbox的页面布局及功能实现相关技巧,需要的朋友可以参考下

本文实例讲述了Android编程之listView中checkbox用法。分享给大家供大家参考,具体如下:

我们经常会用到在listView中使用checkbox的情况。直接不回应用后会发现,ListView中的OnItemClickListener事件会和checkbox中的选择事件发生冲突,这个怎么处理呢。直接上代码。

list_item.xml代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@color/color_while">
  <TextView
    android:id="@+id/txt_add_note_tag_list_name"
    android:layout_height="50dp"
    android:layout_width="fill_parent"
    android:gravity="center_vertical"
    android:textColor="@color/color_black"
    android:layout_marginLeft="8dp"
    />
  <CheckBox
    android:id="@+id/chk_add_note_tag_list_chk"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:layout_alignParentRight="true"
    android:layout_marginRight="8dp"
    android:focusable="false"   <!--这个是必须加上的,不然会出现冲突-->
    android:clickable="false"   <!--这个是必须加上的,不然会出现冲突-->
    />
</RelativeLayout>

BaseAdapter.java代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package cg.guangda.androidnote;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import cg.guangda.androidnote.Model.noteTag;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.CheckBox;
import android.widget.TextView;
public class Add_note_tag_list_BaseAdapter extends BaseAdapter {
  private LayoutInflater inflater;
  private List<noteTag> list_notetag_date;
  //定义多选框是否被选中
  public static Map<Integer, Boolean> isSelected;
  public Add_note_tag_list_BaseAdapter(Context context,List<noteTag> list_notetag_date)
  {
    this.inflater = LayoutInflater.from(context);
    this.list_notetag_date = list_notetag_date;
    //这儿定义isSelected这个map是记录每个listitem的状态,初始状态全部为false。
    isSelected = new HashMap<Integer, Boolean>();
    for (int i = 0; i < list_notetag_date.size(); i++) {
      isSelected.put(i, false);
    }
  }
  @Override
  public int getCount() {
    // TODO Auto-generated method stub
    return list_notetag_date.size();
  }
  @Override
  public Object getItem(int position) {
    // TODO Auto-generated method stub
    return list_notetag_date.get(position);
  }
  @Override
  public long getItemId(int position) {
    // TODO Auto-generated method stub
    return position;
  }
  @Override
  public View getView(int position, View convertView, ViewGroup parent) {
    add_note_noteTag notetag = null;
    if(convertView==null)
    {
      convertView = inflater.inflate(R.layout.add_note_tag_list_item, null);
      notetag = new add_note_noteTag();
      notetag.txt_add_note_tag_list_name = (TextView)convertView.findViewById(R.id.txt_add_note_tag_list_name);
      notetag.chk_add_note_tag_list_chk = (CheckBox)convertView.findViewById(R.id.chk_add_note_tag_list_chk);
      convertView.setTag(notetag);
    }
    else {
      notetag = (add_note_noteTag)convertView.getTag();
    }
    notetag.txt_add_note_tag_list_name.setText(list_notetag_date.get(position).get_tagName());
    notetag.chk_add_note_tag_list_chk.setChecked(isSelected.get(position));
    return convertView;
  }
  public class add_note_noteTag
  {
    TextView txt_add_note_tag_list_name;
    CheckBox chk_add_note_tag_list_chk;
  }
}

应用页面:

?
1
2
list_popwin_note_tag.setAdapter(new Add_note_tag_list_BaseAdapter(this, list_noteTag_date));
list_popwin_note_tag.setOnItemClickListener(new noteTagListItemOnClickListener());
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
* 点击列表项事件
* @author cg
*
*/
class noteTagListItemOnClickListener implements OnItemClickListener{
    @Override
    public void onItemClick(AdapterView<?> arg0, View view, int position,
        long arg3) {
      // TODO Auto-generated method stub
      add_note_noteTag vHollder = (add_note_noteTag) view.getTag();
      //在每次获取点击的item时将对于的checkbox状态改变,同时修改map的值。
      vHollder.chk_add_note_tag_list_chk.setChecked(vHollder.chk_add_note_tag_list_chk.isChecked()==true ? false : true);
      boolean check = vHollder.chk_add_note_tag_list_chk.isChecked();
      Add_note_tag_list_BaseAdapter.isSelected.put(position, check);
      Log.v("noteTagListItemOnClickListener", list_noteTag_date.get(position).get_tagName() + check);
    }
}

希望本文所述对大家Android程序设计有所帮助。

延伸 · 阅读

精彩推荐
  • AndroidAndroid程序设计之AIDL实例详解

    Android程序设计之AIDL实例详解

    这篇文章主要介绍了Android程序设计的AIDL,以一个完整实例的形式较为详细的讲述了AIDL的原理及实现方法,需要的朋友可以参考下...

    Android开发网4642021-03-09
  • AndroidAndroid中AsyncTask详细介绍

    Android中AsyncTask详细介绍

    这篇文章主要介绍了Android中AsyncTask详细介绍,AsyncTask是一个很常用的API,尤其异步处理数据并将数据应用到视图的操作场合,需要的朋友可以参考下...

    Android开发网7452021-03-11
  • AndroidAndroid界面效果UI开发资料汇总(附资料包)

    Android界面效果UI开发资料汇总(附资料包)

    android ui界面设计,友好的界面会提高用户体验度;同时也增强了android ui界面设计的难度,本文提供了一些常用开发资料(有下载哦)感兴趣的朋友可以了解下...

    Android开发网4672021-01-03
  • AndroidAndroid实现固定屏幕显示的方法

    Android实现固定屏幕显示的方法

    这篇文章主要介绍了Android实现固定屏幕显示的方法,实例分析了Android屏幕固定显示所涉及的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下...

    鉴客6192021-03-27
  • AndroidAndroid实现Service获取当前位置(GPS+基站)的方法

    Android实现Service获取当前位置(GPS+基站)的方法

    这篇文章主要介绍了Android实现Service获取当前位置(GPS+基站)的方法,较为详细的分析了Service基于GPS位置的技巧,具有一定参考借鉴价值,需要的朋友可以参考下...

    Ruthless8342021-03-31
  • Android汇总Android视频录制中常见问题

    汇总Android视频录制中常见问题

    这篇文章主要汇总了Android视频录制中常见问题,帮助大家更好地解决Android视频录制中常见的问题,需要的朋友可以参考下...

    yh_thu5192021-04-28
  • AndroidAndroid编程解析XML方法详解(SAX,DOM与PULL)

    Android编程解析XML方法详解(SAX,DOM与PULL)

    这篇文章主要介绍了Android编程解析XML方法,结合实例形式详细分析了Android解析XML文件的常用方法与相关实现技巧,需要的朋友可以参考下...

    liuhe68810052021-05-03
  • AndroidAndroid CardView+ViewPager实现ViewPager翻页动画的方法

    Android CardView+ViewPager实现ViewPager翻页动画的方法

    本篇文章主要介绍了Android CardView+ViewPager实现ViewPager翻页动画的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧...

    Abby代黎明9602022-03-02