Android利用RecyclerView实现全选、置顶和拖拽功能示例

前言

今天给大家分享是如何在RecyclerView实现全选,ItemTouchHelper实现侧滑删除,拖拽功能。比较基础。关于RecyclerView的强大,就不多说了。在Android L SDK发布的新API中最有意思的就是RecyclerView 和 CardView了, 按照官方的说法, RecyclerView 一个ListView 的一个更高级更灵活的一个版本, 可以自定义的东西太多了。

效果:


RecyclerView实现全选,ItemTouchHelper实现侧滑删除,拖拽功能

使用RecyclerView,首先我们需要依赖

 compile 'com.android.support:recyclerview-v7:23.+'

项目结构:


项目结构

主要是把选择的存储在HashMap记录下来,通知用eventbus发送。下面我们一步一步来实现这种效果.

方法如下

1、我们新建一个MainActivity 布局

public class MainActivity extends Activity {
 private RecyclerView recyclerView;
 private CheckBox checkbox;
 private TextView selected;
 private ListAdapter adapter;
 private EventBus event;
 private boolean isChange = false;
 private ArrayList<Book> list = new ArrayList<>();

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  initView();
  initData();
 }

 private void initView() {
  event = EventBus.getDefault();
  event.register(this);
  recyclerView = (RecyclerView) findViewById(R.id.recyclerview);
  checkbox = (CheckBox) findViewById(R.id.checkbox);
  selected = (TextView) findViewById(R.id.selected);
 }

 private void initData() {
  for (int i = 0; i < 20; i++) {
   Book model = new Book();
   model.setId(i);
   model.setName("商品" + i);
   model.setDesc("描述" + i);
   list.add(model);
  }
  adapter = new ListAdapter(list, event);
  recyclerView.setHasFixedSize(true);
  recyclerView.setAdapter(adapter);
  recyclerView.setLayoutManager(new GridLayoutManager(this, 3));
  checkbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
   @Override
   public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
    try {
     HashMap<Integer, Boolean> map = new HashMap<Integer, Boolean>();
     int count = 0;
     if (isChecked) {
      isChange = false;
     }
     for (int i = 0, p = list.size(); i < p; i++) {
      if (isChecked) {
       map.put(i, true);
       count++;
      } else {
       if (!isChange) {
        map.put(i, false);
        count = 0;
       } else {
        map = adapter.getMap();
        count = map.size();
       }
      }
     }
     selected.setText("已选" + count + "项");
     adapter.setMap(map);
    } catch (Exception e) {
     e.printStackTrace();
    }
   }
  });

  adapter.setOnItemClickListener(new ListAdapter.ItemClickListener() {
   @Override
   public void onItemClick(RecyclerView.ViewHolder holder, int positon) {
    Log.e("onItemClick", "" + positon);
   }

   @Override
   public void onItemLongClick(final RecyclerView.ViewHolder holder, final int positon) {
    Log.e("onItemLongClick", "" + positon);
   }
  });
 }

 public void onEventMainThread(SelectEvent event) {
  int size = event.getSize();
  if (size < list.size()) {
   isChange = true;
   checkbox.setChecked(false);
  } else {
   checkbox.setChecked(true);
   isChange = false;
  }
  selected.setText("已选" + size + "项");
 }
 @Override
 protected void onDestroy() {
  super.onDestroy();
  event.unregister(this);
 }
}

2、我们建一个ListAdapter适配器

public class ListAdapter extends RecyclerView.Adapter<ListAdapter.ItemViewHolder> {

 private List<Book> mItems;
 private List<Book> selected;
 public HashMap<Integer, Boolean> map;
 private EventBus eventBus;

 public ListAdapter(List<Book> mItems, EventBus eventBus) {
  this.mItems = mItems;
  this.eventBus = eventBus;
  map = new HashMap<>();
  selected = new ArrayList<>();
  init();
 }

 private void init() {
  if (null == mItems || mItems.size() <= 0) {
   return;
  }
  for (int i = 0, p = mItems.size(); i < p; i++) {
   map.put(i, false);
  }
 }

 @Override
 public ItemViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
  View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.activity_main_item, parent, false);
  ItemViewHolder itemViewHolder = new ItemViewHolder(view);
  return itemViewHolder;
 }

 @Override
 public void onBindViewHolder(final ItemViewHolder holder, final int position) {
  if (null == mItems || mItems.size() <= 0) {
   return;
  }
  holder.name.setText(mItems.get(position).getName());
  holder.desc.setText(mItems.get(position).getDesc());

  holder.checkBox.setTag(new Integer(position));//防止划回来时选中消失

  if (map != null) {
   ((ItemViewHolder) holder).checkBox.setChecked((map.get(position)));
  } else {
   ((ItemViewHolder) holder).checkBox.setChecked(false);
  }
  holder.checkBox.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View view) {
    int mFlags = (Integer) view.getTag();
    if (map != null) {
     if (map.get(position)) {
      map.put(position, false);
      eventBus.post(new SelectEvent(selected(map)));
     } else {
      map.put(mFlags, Boolean.TRUE);
      eventBus.post(new SelectEvent(selected(map)));
     }
    }
   }
  });
  holder.itemView.setOnClickListener(new View.OnClickListener() {
   @Override
   public void onClick(View v) {
    mItemClickListener.onItemClick(holder,holder.getAdapterPosition());
   }
  });
  holder.itemView.setOnLongClickListener(new View.OnLongClickListener() {
   @Override
   public boolean onLongClick(View v) {
    mItemClickListener.onItemLongClick(holder,holder.getAdapterPosition());
    return true;
   }
  });
 }

 private int selected(HashMap<Integer, Boolean> map) {
  int size = 0;
  for (Integer key : map.keySet()) {
   if(map.get(key)){
    size++;
   }
  }
  return size;
 }
 @Override
 public int getItemCount() {
  return mItems == null? 0 :mItems.size();
 }
 public static class ItemViewHolder extends RecyclerView.ViewHolder{

  public final CheckBox checkBox;
  public final TextView name;
  public final TextView desc;

  public ItemViewHolder(View itemView) {
   super(itemView);
   checkBox = (CheckBox) itemView.findViewById(R.id.checkbox);
   name = (TextView) itemView.findViewById(R.id.tv_name);
   desc = (TextView) itemView.findViewById(R.id.tv_desc);
  }
 }

 public HashMap<Integer, Boolean> getMap() {
  return map;
 }

 public void setMap(HashMap<Integer, Boolean> map) {
  this.map = map;
  notifyDataSetChanged();
 }

 /**
  * 点击事件和长按事件
  */
 public interface ItemClickListener{
  void onItemClick(RecyclerView.ViewHolder holder , int position);
  void onItemLongClick(RecyclerView.ViewHolder holder , int position);
 }

 private ItemClickListener mItemClickListener;
 public void setOnItemClickListener(ItemClickListener listener){
  this.mItemClickListener=listener;
 }
}

3、我们新建实体Book和SelectEvent

package com.aikaifa.checkall.bean;

public class Book {

 private int id;
 private String name;
 private String desc;

 public String getDesc() {
  return desc;
 }

 public void setDesc(String desc) {
  this.desc = desc;
 }

 public String getName() {
  return name;
 }

 public void setName(String name) {
  this.name = name;
 }

 public int getId() {
  return id;
 }

 public void setId(int id) {
  this.id = id;
 }

 public Book() {
 }
}

public class SelectEvent {
 private int size;

 public SelectEvent(int size) {
  this.size = size;
 }

 public int getSize() {
  return size;
 }
}

4、建立checkbox_selector.xml选中样式

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
 <item android:drawable="@mipmap/checkbox_pressed" android:state_checked="true"/>
 <item android:drawable="@mipmap/checkbox_normal" android:state_checked="false"/>
 <item android:drawable="@mipmap/checkbox_normal"/>
</selector>

5、建立一个activity_main.xml布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:orientation="vertical">

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

  <CheckBox
   android:id="@+id/checkbox"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:drawablePadding="10dp"
   android:text="全选"
   android:textColor="#969696"
   android:textSize="12sp" />

  <TextView
   android:id="@+id/selected"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_marginLeft="10dp"
   android:gravity="center_vertical"
   android:text="已选0项" />
 </LinearLayout>

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

activity_main_item布局

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/item"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_marginTop="10dp"
 android:clickable="true"
 android:focusable="true">

 <RelativeLayout
  android:id="@+id/rl_app"
  android:layout_width="50dp"
  android:layout_height="50dp"
  android:layout_centerHorizontal="true">

  <ImageView
   android:id="@+id/iv"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:src="@mipmap/ic_launcher" />

  <CheckBox
   android:id="@+id/checkbox"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_alignParentRight="true"
   android:layout_gravity="center_vertical"
   android:button="@drawable/checkbox_selector" />

 </RelativeLayout>

 <TextView
  android:id="@+id/tv_name"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_below="@+id/rl_app"
  android:gravity="center"
  android:text="name"
  android:textColor="#ffffff" />

 <TextView
  android:id="@+id/tv_desc"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_below="@+id/tv_name"
  android:gravity="center"
  android:textColor="#f5f5f5"
  android:textSize="9sp" />
</RelativeLayout>

这样关于RecyclerView实现全选,ItemTouchHelper实现侧滑删除,拖拽功能就完成了。

示例代码下载:

项目地址:https://github.com/88ios/RecyclerViewCheckAll

本地下载:点击这里

总结

以上就是这篇文章的全部内容了,希望本文的内容对各位Android开发者们能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对我们的支持。

(0)

相关推荐

  • Android Recyclerview实现多选,单选,全选,反选,批量删除的功能

    效果图如下: Recyclerview 实现多选,单选,全选,反选,批量删除的步骤 1.在Recyclerview布局中添加上底部的全选和反选按钮,删除按钮,和计算数量等控件 2.这里选中的控件没有用checkbox来做,用的是imageview,选中和不选中其实是两张图片 3.默认是不显示选中的控件的,点击编辑的时候显示,点击取消的时候隐藏 4.通过adapter和activity数据之间的传递,然后进行具体的操作 具体代码如下: 在recyclerview的布局中写全选,反选,删除,计数等相

  • Android利用RecyclerView实现全选、置顶和拖拽功能示例

    前言 今天给大家分享是如何在RecyclerView实现全选,ItemTouchHelper实现侧滑删除,拖拽功能.比较基础.关于RecyclerView的强大,就不多说了.在Android L SDK发布的新API中最有意思的就是RecyclerView 和 CardView了, 按照官方的说法, RecyclerView 一个ListView 的一个更高级更灵活的一个版本, 可以自定义的东西太多了. 效果: RecyclerView实现全选,ItemTouchHelper实现侧滑删除,拖拽功

  • Android利用RecyclerView实现列表倒计时效果

    最近面试时,面试官问了一个列表倒计时效果如何实现,现在记录一下. 运行效果图 实现思路 实现方法主要有两个: 1.为每个开始倒计时的item启动一个定时器,再做更新item处理: 2.只启动一个定时器,然后遍历数据,再做再做更新item处理. 经过思考,包括性能.实现等方面,决定使用第2种方式实现. 实现过程 数据实体 /** * 总共的倒计时的时间(结束时间-开始时间),单位:毫秒 * 例: 2019-02-23 11:00:30 与 2019-02-23 11:00:00 之间的相差的毫秒数

  • Android自定义RecyclerView Item头部悬浮吸顶

    本文实例为大家分享了Android自定义RecyclerView Item头部悬浮吸顶的具体代码,供大家参考,具体内容如下 概述 1.自定义了一个FrameLayout,引入条目的头部布局加入到自定义FrameLayout中. 2.将RecyclerView加入FrameLayout 3.条目头部View的Alpha动画以及设置透明和不透明这个时机大多是通过打log来确定的,硬推理还是有些难. 4.当屏幕显示区域的第二条Item距离控件顶端的距离小于条目头部View高度时,就开始移动条目头部Vi

  • 使用vue.js实现checkbox的全选和多个的删除功能

    template代码: <template> <div class="hello"> <ul> <li v-for="(item, index) in proData"> <label for=""> <input type="checkbox" :value="index" v-model="selectArr">

  • Android中RecyclerView实现滑动删除与拖拽功能

    前言 从Android 5.0开始,谷歌推出了新的控件RecyclerView,相对于早它之前的ListView,优点多多,功能强大,也给我们的开发着提供了极大的便利,今天自己学习一下RecyclerView轻松实现滑动删除及拖拽的效果. 如下图. 相信研究过RecyclerView的同学,应该很清楚该怎么实现这样的效果,若是用ListView,这样的效果实现起来可能就有点麻烦,但是在强大的RecyclerView面前这样的的效果只需很少的代码,因为谷歌给我们提供了强大的工具类ItemTouch

  • RecyclerView实现侧滑拖拽功能

    本文实例为大家分享了RecyclerView实现侧滑拖拽功能的具体代码,供大家参考,具体内容如下 准备 ItemDragListener package slideslipdrag; import android.support.v7.widget.RecyclerView; /** * Created on 2018/7/22. * * @desc ItemDragListener */ public interface ItemDragListener { /** * 拖拽 * * @par

  • javascript利用canvas实现鼠标拖拽功能

    利用canvas实现鼠标拖拽功能,当在元素上按下鼠标并移动时,元素跟着鼠标移动. 效果: 主要思路: 当鼠标按下时,用isPointInPath方法判断鼠标位置是否在元素上,如果在则鼠标移动时元素跟着移动:当鼠标抬起时,将鼠标移动事件和抬起事件置空. 代码如下: <canvas id="can" width="400" height="400"></canvas> <script type="text/ja

  • Android仿QQ消息提示点拖拽功能

    很久以前,发现QQ有一个很有趣的功能,就是未读消息的红点是可以拖拽的,而且在任何地方都可以随意拖拽,并且有一个弹性的动画,非常有趣,而且也是一个非常方便的功能,于是总想仿制一个,虽说仿制,但也只是他的拖拽功能,弹性效果还是能力有限. 不多说 先上效果 一个自定义的view 使用方式也很简单 <com.weizhenbin.show.widget.VanishView android:layout_width="30dp" android:layout_height="3

  • Android仿QQ左滑删除置顶ListView操作

    最近闲来无事,于是研究了一下qq的左滑删除效果,尝试着实现了一下,先上效果图: 大致思路原理: - 通过设置margin实现菜单的显示与隐藏 - 监听onTouchEvent,处理滑动事件 上代码 import android.content.Context; import android.util.AttributeSet; import android.util.DisplayMetrics; import android.view.MotionEvent; import android.v

  • Android中在GridView网格视图上实现item拖拽交换的方法

    GridView基础 新建一个HelloGridView的工程 修改main.xml代码如下: <?xml version="1.0" encoding="utf-8"?> <GridView xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/gridview" android:layout_width=&q

随机推荐