Android條目拖拽刪除功能實例代碼
項目中需求,要做條目條目拖拽刪除效果,實際效果和QQ消息刪除一樣,側(cè)滑有制定和刪除。
效果圖

第一步效果圖

1.0自定義控件 SwipeLayout 繼承FrameLayout重寫里面三個構(gòu)造方法,分別調(diào)用initView().
2.0在布局中使用自定義控件
3.0在initView()方法中,創(chuàng)建拖拽輔輔助工具 ViewDragHelper()
該方法需要傳入回調(diào) MyCallBack()
4.0,創(chuàng)建MyCallBack()回調(diào),繼承ViewDragHelper.Callback
在回調(diào)中 覆蓋tryCaptureView方法,返回true 允許child被拖拽,被 覆蓋clampViewPositionHorizontal 返回left系統(tǒng)提供拖拽位置
5.0 onInterceptTouchEvent 返回:讓ViewDragHelper判斷是否需要攔截事件
6.0 onTouchEvent 返回true 并且讓ViewDragHelper分析事件
具體代碼:
布局:
<cn.itheima.swipelayout.SwipeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="wrap_content"> <!--正文部分--> <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#fff" android:orientation="horizontal"> <TextView android:id="@+id/item_tv_name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp" android:text="張三" android:textSize="20sp" /> </RelativeLayout> <!--按鈕部分--> <LinearLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#888888" android:padding="10dp" android:text="呼叫" android:textSize="20sp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="#f00" android:padding="10dp" android:text="刪除" android:textSize="20sp" /> </LinearLayout> </cn.itheima.swipelayout.SwipeLayout>
SwipeLayout 代碼:
public class SwipeLayout extends FrameLayout {
private ViewDragHelper mDragHelper;
public SwipeLayout(Context context) {
super(context);
initView();
}
public SwipeLayout(Context context, AttributeSet attrs) {
super(context, attrs);
initView();
}
public SwipeLayout(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
initView();
}
private void initView() {
mDragHelper = ViewDragHelper.create(this,new MyCallBack());
}
// 讓ViewDragHelper就是拖拽輔助工具 返回true 則表示要攔截觸摸事件
@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
//讓拖拽輔助工具判斷是否需要攔截 事件
return mDragHelper.shouldInterceptTouchEvent(ev);
}
@Override
public boolean onTouchEvent(MotionEvent event) {
//讓拖拽輔助工具分析事件 分析用戶手勢
mDragHelper.processTouchEvent(event);
return true;
}
private class MyCallBack extends ViewDragHelper.Callback{
/**
* 如果返回 true 則表示 child 允許被拖拽
*/
@Override
public boolean tryCaptureView(View child, int pointerId) {
return true;
}
/**
* 固定被拖拽控件的水平位置,
* 參數(shù)里的 left 是系統(tǒng)推薦移動到的位置,可以進(jìn)行修正,
* 方法返回的值就是 child 將要移動到的位置
*/
@Override
public int clampViewPositionHorizontal(View child, int left, int dx) {
return left;
}
}
}
第二步:
1.0創(chuàng)建onFinishInflate方法獲取子控件,并且判斷健壯性
/*
控件初始化時執(zhí)行,可以用于獲取子控件
*/
@Override
protected void onFinishInflate() {
// 健壯性檢查
if (getChildCount()!=2){
throw new RuntimeException("SwipeLayout 必須存放兩個子控件");
}
if (!(getChildAt(0) instanceof ViewGroup)||!(getChildAt(1) instanceof ViewGroup)){
throw new RuntimeException("SwipeLayout 的子控件必須是 ViewGroup");
}
mContent = (ViewGroup) getChildAt(0);
mDeletePanel = (ViewGroup) getChildAt(1);
}
2.0創(chuàng)建onSizeChanged方法,在控件大小改變的時候調(diào)用,獲取控件的寬高,和刪除的面板的最大移動范圍
/**
* 當(dāng)控件大小改變的時候調(diào)用這個方法
*/
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
int mWith = w;
int mHeigth = h;
//界面創(chuàng)建過程中,不能使用 getWidth 方法
int mRang = mDeletePanel.getMeasuredWidth();
}
3.0在onLayout中指定側(cè)拉面板的位置
//指定側(cè)拉面板的位置
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
mDeletePanel.layout(mWith,0,mWith+mRang,mHeigth);
}
4.0在onViewPositionChanged方法中實現(xiàn)聯(lián)動效果
/**
* 當(dāng)被拖拽的控件已經(jīng)移動過后,會調(diào)用這個方法,可以用于處理控件間的聯(lián)動效果
* @left 被拖拽控件的真實移動位置
* @dx 被拖拽控件的真實偏移大小
*/
@Override
public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {
if (changedView==mContent){
// 移動正文的同時也要移動側(cè)欄
mDeletePanel.offsetLeftAndRight(dx);
}else{
mContent.offsetLeftAndRight(dx);
}
}
5.0在 clampViewPositionHorizontal方法中 固定被拖拽控件的水平位置,
/**
* 固定被拖拽控件的水平位置,
* 參數(shù)里的 left 是系統(tǒng)推薦移動到的位置,可以進(jìn)行修正,
* 方法返回的值就是 child 將要移動到的位置
*/
@Override
public int clampViewPositionHorizontal(View child, int left, int dx) {
if (child==mContent){
if (left>0){
left=0;
}else if (left<-mRang){
left=-mRang;
}
}else{
if (left>mWith){//mWith是屏幕的寬度
left=mWith;
}else if (left<mWith-mRang){
left=mWith-mRang;
}
}
return left;
}
第三步:
效果圖

1.0onViewReleased中根據(jù)來開局里面,判斷是否打開還是關(guān)閉
2.0 在 moveContent中第一次滑動
3.0computeScroll中,繼續(xù)滑動,直到滑動到指定的位置
4.0注意在onViewPositionChanged中手動刷新界面,調(diào)用invalidate方法
如果不手動刷新界面,效果展示不出來
/**
* 當(dāng)用戶松手時執(zhí)行
* @xvel 松手時在 X 方向的移動速度,如果為 正數(shù) 則說明是向右移動,如果是 負(fù)數(shù) 則說明是向左移動,如果為零,說明是靜止?fàn)顟B(tài)
*/
@Override
public void onViewReleased(View releasedChild, float xvel, float yvel) {
if (xvel>0){
//向右移動
close();
}else if (xvel<0){
//向左移動
opend();
}else if (xvel>-mRang/2){// 靜止?fàn)顟B(tài)
close();// 展開不到一半,關(guān)閉面板
}else{
opend();
}
}
}
/**
* 打開面板
*/
private void opend() {
int left=-mRang;
moveContent(left);
}
/**
* 關(guān)閉面板
*/
private void close() {
int left=0;
moveContent(left);
}
private void moveContent(int left) {
// 開啟平滑滾動,如果返回 true 則說明要繼續(xù)刷新界面,保持滾動
if(mDragHelper.smoothSlideViewTo(mContent,left,0)){
invalidate();
}
}
@Override
public void computeScroll() {
// 繼續(xù)平滑滾動,如果返回 true 則說明要繼續(xù)刷新界面,保持滾動
if (mDragHelper.continueSettling(true)){
invalidate();
}
}
第四步:
1.0現(xiàn)給ListView賦值 在這就省略
2.0在SwipeLayout中使用枚舉記錄面板的狀態(tài)
private enum Status{
CLOSED,OPENED,DRAGING;
}
private Status status = Status.CLOSED;
public Status getStatus() {
return status;
}
3.0// 記錄上一個打開的面板。注意:一定要是 靜態(tài)變量
private static SwipeLayout preSwipeLayout;
4.0在onViewPositionChanged中創(chuàng)建一個方法操作關(guān)閉面板
// 關(guān)閉上一個打開的面板 closePre();
5.0closePre()在這個方法中,判斷當(dāng)前面板的狀態(tài),并且根據(jù)狀態(tài),關(guān)閉上一個打開的面板
// 判斷當(dāng)前面板是否正在打開,如果正在打開則將上一個打開的面板關(guān)閉
private void closePre() {
//記錄舊狀態(tài)
Status preStatus=status;
if (mContent.getLeft()==-mRang){
//記錄當(dāng)前面板已經(jīng)打開
status=status.OPENED;
}else if (mContent.getLeft()==0){
//當(dāng)前面板已經(jīng)關(guān)閉
status=status.CLOSED;
}else {
status=status.DRAGING;
}
// 如果當(dāng)前面板舊狀態(tài)為關(guān)閉,并且新狀態(tài)為拖拽,那么此時可以關(guān)閉之前打開的面板
if (preStatus==status.CLOSED&&status==status.DRAGING){
if (preSwipeLayout!=null&&preSwipeLayout!=this){
// 關(guān)閉上一個面板
preSwipeLayout.close();
}
// 將當(dāng)前面板標(biāo)記為 打開的面板
preSwipeLayout=this;
}
}
總結(jié)
以上所述是小編給大家介紹的Android條目拖拽刪除功能實例代碼,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
- Android RecyclerView實現(xiàn)點擊條目刪除
- Android自定義SwipeLayout仿QQ側(cè)滑條目
- Android仿京東分類模塊左側(cè)分類條目效果
- Android更多條目收縮展開控件ExpandView的示例代碼
- Android ListView自動生成列表條目的實例
- Android XRecyclerView實現(xiàn)多條目加載
- Android ListView 條目多樣式展示實例詳解
- android RecyclerView實現(xiàn)條目Item拖拽排序與滑動刪除
- Android中l(wèi)istview和imageview實現(xiàn)條目單選效果
- Android編程實現(xiàn)canvas繪制餅狀統(tǒng)計圖功能示例【自動適應(yīng)條目數(shù)量與大小】
- Android中RecyclerView上拉下拉,分割線,多條目的實例代碼
- Android 中 SwipeLayout一個展示條目底層菜單的側(cè)滑控件源碼解析
- 詳解Android中實現(xiàn)ListView左右滑動刪除條目的方法
- Android實現(xiàn)下拉展示條目效果
相關(guān)文章
android 版本檢測 Android程序的版本檢測與更新實現(xiàn)介紹
做個網(wǎng)站的安卓客戶端,用戶安裝到自己手機上,如果我出了新版本怎么辦呢?要有版本更新功能,感興趣的朋友可以了解下2013-01-01
Android實現(xiàn)的數(shù)字格式化用法示例
這篇文章主要介紹了Android實現(xiàn)的數(shù)字格式化用法,結(jié)合實例形式分析了Android數(shù)學(xué)運算中數(shù)字格式化輸出的相關(guān)技巧,需要的朋友可以參考下2016-08-08
Android編程實現(xiàn)擦除Bitmap中某一塊的方法
這篇文章主要介紹了Android編程實現(xiàn)擦除Bitmap中某一塊的方法,涉及Android操作Bitmap顏色像素值調(diào)整的相關(guān)技巧,具有一定參考借鑒價值,需要的朋友可以參考下2015-11-11
Android中判斷網(wǎng)絡(luò)連接是否可用及監(jiān)控網(wǎng)絡(luò)狀態(tài)
獲取網(wǎng)絡(luò)信息需要在AndroidManifest.xml文件中加入相應(yīng)的權(quán)限,接下來詳細(xì)介紹Android中判斷網(wǎng)絡(luò)連接是否可用及監(jiān)控網(wǎng)絡(luò)狀態(tài),感興趣的朋友可以參考下2012-12-12

