溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

怎么在Android中利用ListView實(shí)現(xiàn)一個(gè)側(cè)滑刪除功能

發(fā)布時(shí)間:2020-11-26 16:53:59 來源:億速云 閱讀:504 作者:Leah 欄目:移動(dòng)開發(fā)

本篇文章給大家分享的是有關(guān)怎么在Android中利用ListView實(shí)現(xiàn)一個(gè)側(cè)滑刪除功能,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

需求:

1、listView可以側(cè)滑item,展示刪除按鈕,點(diǎn)擊刪除按鈕,刪除當(dāng)前的item

2、在刪除按鈕展示時(shí),點(diǎn)擊隱藏刪除按鈕,不響應(yīng)item的點(diǎn)擊事件

3、在刪除按鈕隱藏時(shí),點(diǎn)擊item響應(yīng)點(diǎn)擊事件

根據(jù)以上需求在網(wǎng)絡(luò)上查找響應(yīng)的例子,也有仿QQ側(cè)滑代碼,但不能滿足2和3的要求,因此修改了一把,代碼如下,共大家拍磚

第一步:重寫ListView

public class SwipeListView extends ListView {
  private final static String TAG = "SwipeListView";
  private int mScreenWidth;  // 屏幕寬度
  private int mDownX;      // 按下點(diǎn)的x值
  private int mDownY;      // 按下點(diǎn)的y值
  private int mDeleteBtnWidth;// 刪除按鈕的寬度
  private boolean isDeleteShown = false;  // 刪除按鈕是否正在顯示
  private boolean isOnClick = false;
  private ViewGroup mPointChild;  // 當(dāng)前處理的item
  private LinearLayout.LayoutParams mLayoutParams;  // 當(dāng)前處理的item的LayoutParams
  public SwipeListView(Context context, AttributeSet attrs) {
    this(context, attrs, 0);
  }
  public SwipeListView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    // 獲取屏幕寬度
    WindowManager wm = (WindowManager) context.getSystemService(Context.WINDOW_SERVICE);
    DisplayMetrics dm = new DisplayMetrics();
    wm.getDefaultDisplay().getMetrics(dm);
    mScreenWidth = dm.widthPixels;
  }
  @Override
  public boolean onTouchEvent(MotionEvent ev) {
    switch (ev.getAction()) {
      case MotionEvent.ACTION_DOWN:
        performActionDown(ev);
        break;
      case MotionEvent.ACTION_MOVE:
        return performActionMove(ev);
      case MotionEvent.ACTION_UP:
        return performActionUp(ev);
//        break;
    }
    return super.onTouchEvent(ev);
  }
  // 處理action_down事件
  private void performActionDown(MotionEvent ev) {
//    Log.e(TAG,"performActionDown===="+isDeleteShown);
    if (isDeleteShown) {
      turnToNormal();
    }
    isOnClick = true;
    mDownX = (int) ev.getX();
    mDownY = (int) ev.getY();
    // 獲取當(dāng)前點(diǎn)的item
    int downPosition = pointToPosition(mDownX, mDownY);
    int firstPosition= getFirstVisiblePosition();
    Log.e(TAG,"performActionDown====downPosition:"+downPosition+"==firstPosition"+firstPosition);
    if(downPosition < 0) return;
    mPointChild = (ViewGroup) getChildAt(downPosition-firstPosition);
    // 獲取刪除按鈕的寬度
    mDeleteBtnWidth = mPointChild.getChildAt(1).getLayoutParams().width;
    mLayoutParams = (LinearLayout.LayoutParams) mPointChild.getChildAt(0)
        .getLayoutParams();
    // 為什么要重新設(shè)置layout_width 等于屏幕寬度
    // 因?yàn)閙atch_parent時(shí),不管你怎么滑,都不會(huì)顯示刪除按鈕
    // why? 因?yàn)閙atch_parent時(shí),ViewGroup就不去布局剩下的view
    mLayoutParams.width = mScreenWidth;
    mPointChild.getChildAt(0).setLayoutParams(mLayoutParams);
  }
  // 處理action_move事件
  private boolean performActionMove(MotionEvent ev) {
//    Log.e(TAG, "performActionMove====" + isDeleteShown);
    int nowX = (int) ev.getX();
    int nowY = (int) ev.getY();
    isOnClick = false;
    if (Math.abs(nowX - mDownX) > Math.abs(nowY - mDownY)) {
      // 如果向左滑動(dòng)
      if (nowX < mDownX) {
        // 計(jì)算要偏移的距離
        int scroll = (nowX - mDownX) / 2;
        // 如果大于了刪除按鈕的寬度, 則最大為刪除按鈕的寬度
        if (-scroll >= mDeleteBtnWidth) {
          scroll = -mDeleteBtnWidth;
        }
        // 重新設(shè)置leftMargin
        mLayoutParams.leftMargin = scroll;
        mPointChild.getChildAt(0).setLayoutParams(mLayoutParams);
      }
      return true;
    }
    return super.onTouchEvent(ev);
  }
  // 處理action_up事件
  private boolean performActionUp(MotionEvent ev) {
    boolean falg = false;
    if(isOnClick && !isDeleteShown)
    {
      falg = true;
    }
    // 偏移量大于button的一半,則顯示button
    // 否則恢復(fù)默認(rèn)
    if (-mLayoutParams.leftMargin >= mDeleteBtnWidth / 2) {
      mLayoutParams.leftMargin = -mDeleteBtnWidth;
      isDeleteShown = true;
    } else {
      turnToNormal();
      isDeleteShown = false;
    }
    mPointChild.getChildAt(0).setLayoutParams(mLayoutParams);
//    Log.e(TAG, "performActionUp====" + isDeleteShown);
    if(falg)
    {
      return super.onTouchEvent(ev);
    }
    return true;
  }
  /**
   * 變?yōu)檎顟B(tài)
   */
  public void turnToNormal() {
    mLayoutParams.leftMargin = 0;
    mPointChild.getChildAt(0).setLayoutParams(mLayoutParams);
  }
  /**
   * 當(dāng)前是否可點(diǎn)擊
   *
   * @return 是否可點(diǎn)擊
   */
  public boolean canClick() {
    return !isDeleteShown;
  }
}

第二步:適配器

class SwipeListAdapter extends BaseAdapter {
  @Override
  public int getCount() {
    return mData.size();
  }
  @Override
  public Object getItem(int position) {
    return mData.get(position);
  }
  @Override
  public long getItemId(int position) {
    return position;
  }
  @Override
  public View getView(int position, View convertView, ViewGroup parent) {
    ViewHolder holder = null;
    if (null == convertView) {
      holder = new ViewHolder();
      convertView = View.inflate(TestListViewActivity.this, R.layout.item_swipe_list, null);
      holder.tv = (LinearLayout) convertView.findViewById(R.id.tv);
      holder.tvName = (TextView) convertView.findViewById(R.id.tv_name);
      holder.delete = (TextView) convertView.findViewById(R.id.delete);
      convertView.setTag(holder);
    }
    else {
      holder = (ViewHolder) convertView.getTag();
    }
    holder.tvName.setText(mData.get(position));
    final int pos = position;
    holder.delete.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        mData.remove(pos);
        notifyDataSetChanged();
        mListView.turnToNormal();
      }
    });
    return convertView;
  }
}
static class ViewHolder {
  LinearLayout tv;
  TextView tvName;
  TextView delete;
}

第三步:寫一個(gè)TestListViewActivity

private SwipeListView mListView;
  private ArrayList<String> mData = new ArrayList<String>() {
    {
      for (int i = 0; i < 20; i++) {
        add("hello world, hello android " + i);
      }
    }
  };
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_test_list_view);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);
    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View view) {
        Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG)
            .setAction("Action", null).show();
      }
    });
    mListView = (SwipeListView) findViewById(R.id.list);
    mListView.setAdapter(new SwipeListAdapter());
//    mListView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
//      @Override
//      public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
//        Toast.makeText(TestListViewActivity.this, mData.get(position) + "被點(diǎn)擊了",
//            Toast.LENGTH_SHORT).show();
//        return false;
//      }
//    });
    mListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
      @Override
      public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        Log.e("SwipeListView", "setOnItemClickListener====" + mListView.canClick());
//        Toast.makeText(TestListViewActivity.this, mData.get(position) + "被點(diǎn)擊了",
//            Toast.LENGTH_SHORT).show();
      }
    });
  }

第四步:布局文件

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
  android:layout_height="match_parent" 
  app:layout_behavior="@string/appbar_scrolling_view_behavior"
  tools:showIn="@layout/activity_test_list_view"
  tools:context="com.kimascend.ledappd1.activity.TestListViewActivity">
  <com.kimascend.ledappd1.view.SwipeListView
    android:id="@+id/list"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:cacheColorHint="@android:color/transparent"
    android:listSelector="@android:color/transparent"
    android:divider="@android:color/darker_gray"
    android:dividerHeight="2dp">
  </com.kimascend.ledappd1.view.SwipeListView>
</RelativeLayout>

第五步:item的布局文件

<?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="wrap_content"
  android:orientation="horizontal">
  <LinearLayout
    android:id="@+id/tv"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/white"
    android:paddingBottom="20dp"
    android:paddingLeft="10dp"
    android:paddingTop="20dp">
    <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:background="@drawable/group_name_rgb"
      android:id="@+id/imageView8" />
    <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:textAppearance="?android:attr/textAppearanceLarge"
      android:text="Large Text"
      android:layout_gravity="center_vertical"
      android:id="@+id/tv_name" />
  </LinearLayout>
  <TextView
    android:id="@+id/delete"
    android:layout_width="80dp"
    android:layout_height="match_parent"
    android:background="#FFFF0000"
    android:gravity="center"
    android:paddingLeft="20dp"
    android:paddingRight="20dp"
    android:text="刪除"
    android:textColor="@android:color/white" />
</LinearLayout>

重點(diǎn)注意:

int downPosition = pointToPosition(mDownX, mDownY);

downPosition 在使用過程中得到-1,導(dǎo)致后面方法調(diào)用異常!

以上就是怎么在Android中利用ListView實(shí)現(xiàn)一個(gè)側(cè)滑刪除功能,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI