RecycleView结合ItemTouchHelper实现拖动排序

2024-02-23 01:04

本文主要是介绍RecycleView结合ItemTouchHelper实现拖动排序,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

最近项目中需要实现对某一类条目进行拖动排序功能,实现技术方案就是利用ItemTouchHelper绑定RecyclerView、ItemTouchHelper.Callback来实现UI更新,并且实现动态控制是否开启拖动功能。其中,ItemTouchHelper是Google在androidx包中添加的,其于RecyclerView配合可以比较容易地实现这个功能。

1、布局文件

a、activity的布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="match_parent"android:layout_height="match_parent"android:background="@color/cf5f5f5"><include layout="@layout/title_layout"/><Viewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/ce5e5e5"/><RelativeLayoutandroid:layout_width="match_parent"android:layout_height="50dp"android:background="@color/white"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/custom_order"android:textColor="@color/c333333"android:textSize="14sp"android:layout_centerVertical="true"android:layout_marginLeft="12dp"/><ToggleButtonandroid:id="@+id/toggleBtn"android:layout_width="48dp"android:layout_height="28dp"android:layout_centerVertical="true"android:layout_marginRight="12dp"android:background="@drawable/toggle_drawable_selector"android:button="@null"android:textOff=""android:textOn=""android:layout_alignParentRight="true"/></RelativeLayout><RelativeLayoutandroid:id="@+id/tipLayout"android:layout_width="match_parent"android:layout_height="50dp"android:layout_marginTop="20dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/custom_order_tip1"android:textColor="@color/c808080"android:textSize="12sp"android:layout_centerVertical="true"android:layout_marginLeft="12dp"/><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/custom_order_tip2"android:textColor="@color/c808080"android:textSize="12sp"android:layout_centerVertical="true"android:layout_marginRight="12dp"android:layout_alignParentRight="true"/></RelativeLayout><androidx.recyclerview.widget.RecyclerViewandroid:id="@+id/recycleView"android:layout_width="match_parent"android:layout_height="wrap_content"/>
</LinearLayout>

bRecycleViewlistitem布局文件

<?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="50dp"><ImageViewandroid:id="@+id/image"android:layout_width="24dp"android:layout_height="24dp"android:layout_alignParentLeft="true"android:layout_centerVertical="true"android:layout_marginLeft="12dp"android:src="@mipmap/icon_bank_others"/><TextViewandroid:id="@+id/cardTypeTxt"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="xx借记卡"android:textColor="@color/c333333"android:textSize="14sp"android:layout_centerVertical="true"android:layout_marginLeft="12dp"android:layout_toRightOf="@id/image"/><TextViewandroid:id="@+id/cardNoTxt"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="(8800)"android:textColor="@color/c808080"android:textSize="14sp"android:layout_centerVertical="true"android:layout_marginLeft="6dp"android:layout_toRightOf="@id/cardTypeTxt"/><ImageViewandroid:id="@+id/selectImage"android:layout_width="50dp"android:layout_height="50dp"android:scaleType="center"android:layout_alignParentRight="true"android:layout_centerVertical="true"android:src="@mipmap/sort_line"/>
</RelativeLayout>

2、实现ItemTouchHelper.Callback

private ItemTouchHelper.Callback callback = 
new ItemTouchHelper.Callback() {public int getMovementFlags(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) {//首先回调的方法,返回int表示是否监听该方向int dragFlag = ItemTouchHelper.DOWN | ItemTouchHelper.UP;//拖拽int swipeFlag = 0;//侧滑删除return makeMovementFlags(dragFlag, swipeFlag);}@Overridepublic void onSwiped(@NonNull RecyclerView.ViewHolder viewHolder, int direction) {}public boolean onMove(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder, RecyclerView.ViewHolder target) {if (mAdapter != null) {mAdapter.onMove(viewHolder.getAdapterPosition(), target.getAdapterPosition());}return true;}public void onSelectedChanged(ViewHolder viewHolder, int actionState) {if (actionState != 0) {viewHolder.itemView.setAlpha(0.9f);}super.onSelectedChanged(viewHolder, actionState);}public void clearView(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) {super.clearView(recyclerView, viewHolder);viewHolder.itemView.setAlpha(1.0f);if (mAdapter != null) {mAdapter.notifyDataSetChanged();mSortedList = mAdapter.getSortedDataList();LogUtils.debug(TAG, "callback clearView: " + JSONObject.toJSONString(mSortedList));refreshCardSort(mSortedList);}}};

3、初始化RecycleView,并绑定ItemTouchHelper

 mAdapter = new MyAdapter(mSortedList);recyclerView.setAdapter(mAdapter);LinearLayoutManager llm = new LinearLayoutManager(mContext, LinearLayoutManager.VERTICAL, false);recyclerView.setLayoutManager(llm);//这两句是关键,完成RecycleView和ItemTouchHelper的绑定ItemTouchHelper helper = new ItemTouchHelper(callback);helper.attachToRecyclerView(recyclerView);

4、定义自己的Adapter

private class MyAdapter extends RecyclerView.Adapter<ViewHolder> {private List<AccountInfo> mDataList;public MyAdapter (List<AccountInfo> dataList) {this.mDataList = dataList;}public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {return new ViewHolder(LayoutInflater.from(parent.getContext()).inflate(R.layout.card_order_listitem, parent, false));}public void onBindViewHolder(ViewHolder holder, final int position) {final AccountInfo item = mDataList.get(position);if (item != null) {holder.tvContentType.setText(getCardNoType(item.getAccountType()));holder.tvContentNo.setText(getCardNo(item.getAccountNo()));}}public int getItemCount() {return mDataList.size();}public void onMove(int fromPosition, int toPosition) {//对原数据进行移动Collections.swap(mDataList, fromPosition, toPosition);//通知数据移动notifyItemMoved(fromPosition, toPosition);LogUtils.debug(TAG, "MyAdapter onMove fromPosition: " + fromPosition + ", toPosition: " + toPosition);}public List<AccountInfo> getSortedDataList() {return this.mDataList;}}public class ViewHolder extends RecyclerView.ViewHolder {public TextView tvContentType;public TextView tvContentNo;public ViewHolder(View view) {super(view);this.tvContentType = (TextView)view.findViewById(R.id.cardTypeTxt);this.tvContentNo = (TextView)view.findViewById(R.id.cardNoTxt);}}其他参数定义:private List<AccountInfo> mSortedList;private MyAdapter mAdapter;bean定义如下:
package com.qdone.qrcode.pay.qrcodesdkdemo.model;/*** Time: 2024/1/26* Author:* Description:*/
public class AccountInfo {private String accountId;private String custId;private String accountNo;private String accountType;private String bankName;private String displayOrder;/*** 是否是默认账户,0-普通账户 1-默认账户*/private String defaultFlag;@Overridepublic String toString() {return "AccountInfo{" +"accountId='" + accountId + '\'' +", custId='" + custId + '\'' +", accountNo='" + accountNo + '\'' +", accountType='" + accountType + '\'' +", bankName='" + bankName + '\'' +", displayOrder='" + displayOrder + '\'' +", defaultFlag='" + defaultFlag + '\'' +'}';}public String getAccountId() {return accountId;}public void setAccountId(String accountId) {this.accountId = accountId;}public String getCustId() {return custId;}public void setCustId(String custId) {this.custId = custId;}public String getAccountNo() {return accountNo;}public void setAccountNo(String accountNo) {this.accountNo = accountNo;}public String getAccountType() {return accountType;}public void setAccountType(String accountType) {this.accountType = accountType;}public String getBankName() {return bankName;}public void setBankName(String bankName) {this.bankName = bankName;}public String getDisplayOrder() {return displayOrder;}public void setDisplayOrder(String displayOrder) {this.displayOrder = displayOrder;}public String getDefaultFlag() {return defaultFlag;}public void setDefaultFlag(String defaultFlag) {this.defaultFlag = defaultFlag;}
}

这篇关于RecycleView结合ItemTouchHelper实现拖动排序的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/737057

相关文章

使用zip4j实现Java中的ZIP文件加密压缩的操作方法

《使用zip4j实现Java中的ZIP文件加密压缩的操作方法》本文介绍如何通过Maven集成zip4j1.3.2库创建带密码保护的ZIP文件,涵盖依赖配置、代码示例及加密原理,确保数据安全性,感兴趣的... 目录1. zip4j库介绍和版本1.1 zip4j库概述1.2 zip4j的版本演变1.3 zip4

python生成随机唯一id的几种实现方法

《python生成随机唯一id的几种实现方法》在Python中生成随机唯一ID有多种方法,根据不同的需求场景可以选择最适合的方案,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习... 目录方法 1:使用 UUID 模块(推荐)方法 2:使用 Secrets 模块(安全敏感场景)方法

Spring StateMachine实现状态机使用示例详解

《SpringStateMachine实现状态机使用示例详解》本文介绍SpringStateMachine实现状态机的步骤,包括依赖导入、枚举定义、状态转移规则配置、上下文管理及服务调用示例,重点解... 目录什么是状态机使用示例什么是状态机状态机是计算机科学中的​​核心建模工具​​,用于描述对象在其生命

Spring Boot 结合 WxJava 实现文章上传微信公众号草稿箱与群发

《SpringBoot结合WxJava实现文章上传微信公众号草稿箱与群发》本文将详细介绍如何使用SpringBoot框架结合WxJava开发工具包,实现文章上传到微信公众号草稿箱以及群发功能,... 目录一、项目环境准备1.1 开发环境1.2 微信公众号准备二、Spring Boot 项目搭建2.1 创建

IntelliJ IDEA2025创建SpringBoot项目的实现步骤

《IntelliJIDEA2025创建SpringBoot项目的实现步骤》本文主要介绍了IntelliJIDEA2025创建SpringBoot项目的实现步骤,文中通过示例代码介绍的非常详细,对大家... 目录一、创建 Spring Boot 项目1. 新建项目2. 基础配置3. 选择依赖4. 生成项目5.

nginx -t、nginx -s stop 和 nginx -s reload 命令的详细解析(结合应用场景)

《nginx-t、nginx-sstop和nginx-sreload命令的详细解析(结合应用场景)》本文解析Nginx的-t、-sstop、-sreload命令,分别用于配置语法检... 以下是关于 nginx -t、nginx -s stop 和 nginx -s reload 命令的详细解析,结合实际应

SpringBoot结合Docker进行容器化处理指南

《SpringBoot结合Docker进行容器化处理指南》在当今快速发展的软件工程领域,SpringBoot和Docker已经成为现代Java开发者的必备工具,本文将深入讲解如何将一个SpringBo... 目录前言一、为什么选择 Spring Bootjavascript + docker1. 快速部署与

Linux下删除乱码文件和目录的实现方式

《Linux下删除乱码文件和目录的实现方式》:本文主要介绍Linux下删除乱码文件和目录的实现方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录linux下删除乱码文件和目录方法1方法2总结Linux下删除乱码文件和目录方法1使用ls -i命令找到文件或目录

SpringBoot+EasyExcel实现自定义复杂样式导入导出

《SpringBoot+EasyExcel实现自定义复杂样式导入导出》这篇文章主要为大家详细介绍了SpringBoot如何结果EasyExcel实现自定义复杂样式导入导出功能,文中的示例代码讲解详细,... 目录安装处理自定义导出复杂场景1、列不固定,动态列2、动态下拉3、自定义锁定行/列,添加密码4、合并

mybatis执行insert返回id实现详解

《mybatis执行insert返回id实现详解》MyBatis插入操作默认返回受影响行数,需通过useGeneratedKeys+keyProperty或selectKey获取主键ID,确保主键为自... 目录 两种方式获取自增 ID:1. ​​useGeneratedKeys+keyProperty(推