Android RecycleView使用(CheckBox全选、反选、单选)

本文实例为大家分享了CheckBox全选、反选、单选的具体代码,供大家参考,具体内容如下

MainActiivity

package com.bwie.day06;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;

import com.bwie.day06.myadapter.MyAdapter;

public class MainActivity extends AppCompatActivity {

  private MyAdapter myAdapter;
  private LinearLayoutManager linearLayoutManager;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //初始化控件
    RecyclerView recyclerView = (RecyclerView) findViewById(R.id.recyclerview);
    //在加载数据之前配置
    linearLayoutManager = new LinearLayoutManager(this);
    recyclerView.setLayoutManager(linearLayoutManager);
    //创建一个适配器
    myAdapter = new MyAdapter();
    recyclerView.setAdapter(myAdapter);

  }

  public void btnAll(View view) {
    myAdapter.All();
  }

  public void btnner(View view) {
    myAdapter.neverall();
  }
}

Adapter

package com.bwie.day06.myadapter;

import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.CheckBox;
import android.widget.TextView;

import com.bwie.day06.R;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

public class MyAdapter extends RecyclerView.Adapter<MyAdapter.MyViewHolder> {
  //这个是checkbox的Hashmap集合
  private final HashMap<Integer, Boolean> map;
  //这个是数据集合
  private final ArrayList<String> list;

  public MyAdapter() {
    map = new HashMap<>();
    list = new ArrayList<>();
    for (int i = 0; i < 30; i++) {
      //添加30条数据
      list.add("这是条目" + i);
      map.put(i, false);
    }

  }

  /**
   * 全选
   */
  public void All() {
    Set<Map.Entry<Integer, Boolean>> entries = map.entrySet();
    boolean shouldall = false;
    for (Map.Entry<Integer, Boolean> entry : entries) {
      Boolean value = entry.getValue();
      if (!value) {
        shouldall = true;
        break;
      }
    }
    for (Map.Entry<Integer, Boolean> entry : entries) {
      entry.setValue(shouldall);
    }
    notifyDataSetChanged();
  }

  /**
   * 反选
   */
  public void neverall() {
    Set<Map.Entry<Integer, Boolean>> entries = map.entrySet();
    for (Map.Entry<Integer, Boolean> entry : entries) {
      entry.setValue(!entry.getValue());
    }
    notifyDataSetChanged();
  }

  /**
   * 单选
   *
   * @param postion
   */
  public void singlesel(int postion) {
    Set<Map.Entry<Integer, Boolean>> entries = map.entrySet();
    for (Map.Entry<Integer, Boolean> entry : entries) {
      entry.setValue(false);
    }
    map.put(postion, true);
    notifyDataSetChanged();
  }

  //这里主要初始化布局控件
  @Override
  public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    RecyclerView.LayoutManager layoutManager = ((RecyclerView) parent).getLayoutManager();
    //初始化布局文件
    View inflate = LayoutInflater.from(parent.getContext()).inflate(R.layout.check, parent, false);
    return new MyViewHolder(inflate);
  }

  @Override
  public void onBindViewHolder(final MyViewHolder holder, final int position) {
    //放入集合中的值
    holder.txt.setText(list.get(position));
    holder.checkBox.setChecked(map.get(position));
    holder.checkBox.setOnClickListener(new View.OnClickListener() {

      @Override
      public void onClick(View v) {
        map.put(position, !map.get(position));
        //刷新适配器
        notifyDataSetChanged();
        //单选
//        singlesel(position);

      }
    });

  }

  @Override
  public int getItemCount() {
    return list.size();
  }

  public class MyViewHolder extends RecyclerView.ViewHolder {
    View itemView;
    private TextView txt;
    private CheckBox checkBox;

    //初始化控件
    public MyViewHolder(View itemView) {
      super(itemView);
      this.itemView = itemView;
      txt = (TextView) itemView.findViewById(R.id.txt);
      checkBox = (CheckBox) itemView.findViewById(R.id.cbox);
    }
  }
}

main.xml

<LinearLayout
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="horizontal">

  <Button
    android:onClick="btnAll"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="全选" />

  <Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:text="反选"
    android:onClick="btnner"/>

</LinearLayout>

<android.support.v7.widget.RecyclerView
  android:id="@+id/recyclerview"
  android:layout_width="match_parent"
  android:layout_height="match_parent"></android.support.v7.widget.RecyclerView>

Check.xml

<CheckBox
  android:id="@+id/cbox"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content" />

<TextView
  android:text="dfdfdfdf"
  android:id="@+id/txt"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textSize="20sp" />

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android中自定义Checkbox组件实例

    在Android中,Checkbox是一个很重要的UI组件,而且在Android中,它展现的形式越来越好看,这就说明有些系统,比如4.0以下,checkbox还是比较不好看,或者跟软件的风格不协调,就需要我们自定义这个组件. 自定义这个组件很简单,简单的增加修改xml文件即可. 准备工作 准备好两张图片,一个是选中的图片,另一个是未选中的图片.本文以checked.png和unchecked.png为例. 设置选择框 在drawable下新建文件custom_checkbox.xml 复制代码

  • Android开发中CheckBox的简单用法示例

    本文实例讲述了Android开发中CheckBox的简单用法.分享给大家供大家参考,具体如下: CheckBox是一种在界面开发中比较常见的控件,Android中UI开发也有CheckBox,简单的说下它的使用,每个CheckBox都要设置监听,设置的监听为CompouButton.OnCheckedChangedListener(). package com.zhuguangwei; import android.app.Activity; import android.os.Bundle;

  • Android CheckBox中设置padding无效解决办法

    Android CheckBox中设置padding无效解决办法 CheckBox使用本地图片资源 CheckBox是Android中用的比较多的一个控件,不过它自带的button样式比较丑,通常都会替换成本地的资源图片.使用本地资源图片很简单,设置android:button属性为一个自定义的包含selector的drawable文件即可. 例如android:button="@drawable/radio_style".radio_style.xml定义如下.checked和unc

  • Android开发之CheckBox的简单使用与监听功能示例

    本文实例讲述了Android开发之CheckBox的简单使用与监听功能.分享给大家供大家参考,具体如下: activity_main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_

  • Android中ListView + CheckBox实现单选、多选效果

    还是先来看看是不是你想要的效果: 不废话,直接上代码,很简单,代码里都有注释 1 单选 public class SingleActivity extends AppCompatActivity { private ListView listView; private ArrayList<String> groups; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInsta

  • Android中ListView绑定CheckBox实现全选增加和删除功能(DEMO)

    ListView控件还是挺复杂的,也是项目中应该算是比较常用的了,所以写了一个小Demo来讲讲,主要是自定义adapter的用法,加了很多的判断等等等等-.我们先来看看实现的效果吧! 好的,我们新建一个项目LvCheckBox 我们事先先把这两个布局写好吧,一个是主布局,还有一个listview的item.xml,相信不用多说 activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/

  • Android中CheckBox复选框控件使用方法详解

    CheckBox复选框控件使用方法,具体内容如下 一.简介 1. 2.类结构图 二.CheckBox复选框控件使用方法 这里是使用java代码在LinearLayout里面添加控件 1.新建LinearLayout布局 2.建立CheckBox的XML的Layout文件 3.通过View.inflate()方法创建CheckBox CheckBox checkBox=(CheckBox) View.inflate(this, R.layout.checkbox, null); 4.通过Linea

  • 详解Android Checkbox的使用方法

    0和1是计算机的基础,数理逻辑中0和1代表两种状态,真与假.0和1看似简单,其实变化无穷. 今天我就来聊聊android控件中拥有着0和1这种特性的魔力控件checkbox. 先来讲讲Checkbox的基本使用.在XML中定义. <?xml version="1.0" encoding="utf-8"?> <CheckBox xmlns:android="http://schemas.android.com/apk/res/android

  • Android 中CheckBox多项选择当前的position信息提交的示例代码

    先给大家展示下效果图: 废话不多说了,下面通过示例代码给大家介绍checkbox 多项选择当前的position信息提交,具体代码如下所示: package com.dplustours.b2c.View.activity; import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import andro

  • Android实现炫酷的CheckBox效果

    首先贴出实现的效果图: gif的效果可能有点过快,在真机上运行的效果会更好一些.我们主要的思路就是利用属性动画来动态地画出选中状态以及对勾的绘制过程.看到上面的效果图,相信大家都迫不及待地要跃跃欲试了,那就让我们开始吧. 自定义View的第一步:自定义属性. <?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="SmoothChe

随机推荐