SwipeListView 详解 实现微信,QQ等滑动删除效果

本文详细介绍了Android应用中SwipeListView的基本属性,如frontView和backView控件ID设置,以及SwipeAction、swipeMode等选项。同时给出了布局文件和MainActivity示例,以及Adapter的创建。最后提到移动架构大纲的相关内容。
摘要由CSDN通过智能技术生成
  • swipeFrontView - Required - front view id. 即ListView Item正常显示的控件Id,且必须与Item的布局文件中的控件id一样

  • swipeBackView - Required - back view id.  手指滑动时显示的,隐藏在FrontView后面,且必须与item的布局文件中控件Id一样

  • swipeActionLeft - Optional - left swipe action Default: ‘reveal’  左滑的动作,默认reveal,即显示BackView,还有dismiss,choice会触发响应的方法。

  • swipeActionRight - Optional - right swipe action Default: ‘reveal’ 同上

  • swipeMode - Gestures to enable or ‘none’. Default: ‘both’ 设置左滑、右滑、都支持

  • swipeCloseAllItemsWhenMoveList - Close revealed items on list motion. Default: ‘true’ 当滚动listview时,关闭所有展开的Item,最好不要设置为false,由于item的复用,false存在一些问题。

  • swipeOpenOnLongPress - Reveal on long press Default: ‘true’ 长按时触发显示

  • swipeAnimationTime - item drop animation time. Default: android configuration 动画时间长度

  • swipeOffsetLeft - left offset 左偏移量

  • swipeOffsetRight - right offset 右偏移量

基本属性都介绍了,下面上例子:

1、布局文件

<LinearLayout xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:tools=“http://schemas.android.com/tools”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background=“@color/white”

android:clickable=“true”

android:orientation=“vertical” xmlns:swipe=“http://schemas.android.com/apk/res/com.example.zhy_swipelistview02”>

<include

layout=“@layout/main_title”

android:focusable=“true” />

<FrameLayout

android:layout_width=“match_parent”

android:layout_height=“match_parent” >

<com.fortysevendeg.swipelistview.SwipeListView

android:id=“@+id/id_swipelistview”

android:layout_width=“fill_parent”

android:layout_height=“fill_parent”

swipe:swipeActionLeft=“reveal”

swipe:swipeBackView=“@+id/id_back”

swipe:swipeCloseAllItemsWhenMoveList=“true”

swipe:swipeFrontView=“@+id/id_front”

swipe:swipeMode=“left”

swipe:swipeOffsetLeft=“200dip”

swipe:swipeOpenOnLongPress=“false” />

<TextView

android:id=“@+id/empty”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_gravity=“center”

android:drawableTop=“@drawable/no_chat”

android:text=“木有联系人”

android:textColor=“#ffb7b7b7”

android:textSize=“14.0sp”

android:visibility=“gone” />

item的布局文件:

<FrameLayout xmlns:android=“http://schemas.android.com/apk/res/android”

xmlns:tools=“http://schemas.android.com/tools”

android:layout_width=“match_parent”

android:layout_height=“60dp” >

<LinearLayout

android:id=“@+id/id_back”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background=“#ffcccccc”

android:gravity=“center|right” >

<Button

android:id=“@+id/id_remove”

android:layout_width=“60dp”

android:layout_height=“wrap_content”

android:layout_gravity=“center”

android:layout_marginRight=“4dp”

android:background=“@drawable/red_button”

android:text=“Delete”

android:textColor=“#fff” >

<LinearLayout

android:id=“@+id/id_front”

android:layout_width=“match_parent”

android:layout_height=“match_parent”

android:background=“#ffffffff” >

<TextView

android:id=“@+id/id_text”

android:layout_width=“wrap_content”

android:layout_height=“wrap_content”

android:layout_marginLeft=“10dp”

android:gravity=“center_vertical”

android:minHeight=“?android:attr/listPreferredItemHeight”

android:textAppearance=“?android:attr/textAppearanceLarge”

android:textColor=“#000”

android:textSize=“25sp” >

注意对应布局的id和swipeListView中的frontView和backView的Id一致。

2、MainActivity

package com.example.zhy_swipelistview02;

import java.util.ArrayList;

import java.util.List;

import android.app.Activity;

import android.os.Bundle;

import android.util.Log;

import android.view.Window;

import com.fortysevendeg.swipelistview.BaseSwipeListViewListener;

import com.fortysevendeg.swipelistview.SwipeListView;

public class MainActivity extends Activity

{

protected static final String TAG = “Activity”;

private SwipeListView mSwipeListView;

private DataAdapter mAdapter;

private List mDatas;

@Override

protected void onCreate(Bundle savedInstanceState)

{

super.onCreate(savedInstanceState);

requestWindowFeature(Window.FEATURE_NO_TITLE);

setContentView(R.layout.activity_main);

initDatas();

mSwipeListView = (SwipeListView) findViewById(R.id.id_swipelistview);

mAdapter = new DataAdapter(this, mDatas , mSwipeListView);

mSwipeListView.setAdapter(mAdapter);

mSwipeListView.setSwipeListViewListener(new BaseSwipeListViewListener()

{

@Override

public void onChoiceChanged(int position, boolean selected)

{

Log.d(TAG, “onChoiceChanged:” + position + ", " + selected);

}

@Override

public void onChoiceEnded()

{

Log.d(TAG, “onChoiceEnded”);

}

@Override

public void onChoiceStarted()

{

Log.d(TAG, “onChoiceStarted”);

}

@Override

public void onClickBackView(int position)

{

Log.d(TAG, “onClickBackView:” + position);

}

@Override

public void onClickFrontView(int position)

{

Log.d(TAG, “onClickFrontView:” + position);

}

@Override

public void onClosed(int position, boolean fromRight)

{

Log.d(TAG, “onClosed:” + position + “,” + fromRight);

}

@Override

public void onDismiss(int[] reverseSortedPositions)

{

Log.d(TAG, “onDismiss”);

}

@Override

public void onFirstListItem()

{

Log.d(TAG, “onFirstListItem”);

}

@Override

public void onLastListItem()

{

Log.d(TAG, “onLastListItem”);

}

@Override

public void onListChanged()

{

Log.d(TAG, “onListChanged”);

mSwipeListView.closeOpenedItems();

}

@Override

public void onMove(int position, float x)

{

Log.d(TAG, “onMove:” + position + “,” + x);

}

@Override

public void onOpened(int position, boolean toRight)

{

Log.d(TAG, “onOpened:” + position + “,” + toRight);

}

@Override

public void onStartClose(int position, boolean right)

{

Log.d(TAG, “onStartClose:” + position + “,” + right);

}

@Override

public void onStartOpen(int position, int action, boolean right)

{

Log.d(TAG, “onStartOpen:” + position + “,” + action + “,”

  • right);

}

});

}

private void initDatas()

{

mDatas = new ArrayList();

for (int i = ‘A’; i <= ‘Z’; i++)

mDatas.add((char) i + “”);

}

}

Adapter:

最后

给大家分享一份移动架构大纲,包含了移动架构师需要掌握的所有的技术体系,大家可以对比一下自己不足或者欠缺的地方有方向的去学习提升;

《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!
action, boolean right)

{

Log.d(TAG, “onStartOpen:” + position + “,” + action + “,”

  • right);

}

});

}

private void initDatas()

{

mDatas = new ArrayList();

for (int i = ‘A’; i <= ‘Z’; i++)

mDatas.add((char) i + “”);

}

}

Adapter:

最后

给大家分享一份移动架构大纲,包含了移动架构师需要掌握的所有的技术体系,大家可以对比一下自己不足或者欠缺的地方有方向的去学习提升;

[外链图片转存中…(img-2AtS1oIf-1714925472785)]

《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》点击传送门,即可获取!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值