非常实用的侧滑删除控件SwipeLayout

前言:项目中经常会用到类似于QQ侧滑点击删除的效果,网上的开源库也很多。个人感觉SwipeLayout最好用。下面介绍怎么使用。

一、首先导入需要的Jar包,有3个,AndroidSwipeLayout-v1.1.8.jar、AndroidViewAnimations-1.1.3.jar、nineoldandroids-2.4.0.jar。第一个jar包就是我们使用该控件的jar包,后面2个是侧滑出现删除menu的动画所需的jar包。下面就是怎么使用了。

主布局的xml文件如下,就是一个ListView:

<?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" >

  <ListView
    android:id="@+id/swipe_listview"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
  </ListView>

</LinearLayout>

listview中的每个Item的布局如下:

<?xml version="1.0" encoding="utf-8"?>
<com.daimajia.swipe.SwipeLayout xmlns:swipe="http://schemas.android.com/apk/res-auto"
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/swipe"
  android:layout_width="match_parent"
  android:layout_height="wrap_content" >

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="80dp"
    android:background="#FF5534"
    android:gravity="center"
    android:tag="Bottom3"
    android:weightSum="10" >

    <ImageView
      android:id="@+id/trash"
      android:layout_width="27dp"
      android:layout_height="30dp"
      android:layout_weight="1"
      android:src="@drawable/trash" />

    <TextView
      android:layout_width="0dp"
      android:layout_height="wrap_content"
      android:layout_weight="5"
      android:text="Delete Item?"
      android:textColor="#fff"
      android:textSize="17sp" />

    <Button
      android:id="@+id/delete"
      android:layout_width="0dp"
      android:layout_height="40dp"
      android:layout_weight="4"
      android:background="@drawable/white"
      android:text="Yes,Delete"
      android:textColor="#FF5534" />
  </LinearLayout>

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/item_selector"
    android:padding="10dp" >

    <TextView
      android:id="@+id/position"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />

    <TextView
      android:id="@+id/text_data"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:tag="Hover"
      android:text="Just Do it . " />
  </LinearLayout>

</com.daimajia.swipe.SwipeLayout>

上面的那个LinerLayout相当于bottomView,下面的那个相对应于SurfaceView。开始的时候SurfaceView显示在手机屏幕上,而bottomView则在屏幕外,随着手指的滑动渐渐显示在屏幕上。

Adapter.java如下:

package com.example.adapter;

import java.util.List;

import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.TextView;
import android.widget.Toast;

import com.daimajia.androidanimations.library.Techniques;
import com.daimajia.androidanimations.library.YoYo;
import com.daimajia.swipe.SimpleSwipeListener;
import com.daimajia.swipe.SwipeLayout;
import com.daimajia.swipe.adapters.BaseSwipeAdapter;
import com.example.firstactivity.R;

public class ListViewAdapter extends BaseSwipeAdapter {

  private Context mContext;
  private List<String> mDatas;
  //private TextView mDelete;
  //private SwipeLayout swipeLayout;
  private int pos ;

  public ListViewAdapter(Context context, List<String> mDatas) {
    this.mContext = context;
    this.mDatas = mDatas;
  }

  @Override
  public int getCount() {
    // TODO Auto-generated method stub
    return mDatas.size();
  }

  @Override
  public Object getItem(int position) {
    // TODO Auto-generated method stub
    return mDatas.get(position);
  }

  @Override
  public long getItemId(int position) {
    // TODO Auto-generated method stub
    return position;
  }

  @Override
  public void fillValues(int position, View convertView) {
    // TODO Auto-generated method stub
    Log.e("fillValues", "position = "+position);
    TextView tv = (TextView) convertView.findViewById(R.id.position);
    //tv.setText((position + 1) + ".");
    tv.setText(mDatas.get(position)+"....");

    final SwipeLayout sl = (SwipeLayout) convertView.findViewById(getSwipeLayoutResourceId(position));
    final TextView delete = (TextView) convertView.findViewById(R.id.delete);
    delete.setTag(position);
    delete.setOnClickListener(new OnClickListener() {

      @Override
      public void onClick(View v) {
        // TODO Auto-generated method stub
        int pos = (Integer) delete.getTag();
        String obj = mDatas.get(pos);

        Log.e("onClick", "........pos ...."+pos+" obj = "+obj);
        mDatas.remove(obj);
        notifyDataSetChanged();
        sl.close();
      }
    });

  }

  @Override
  public View generateView(int position, ViewGroup arg1) {
    // TODO Auto-generated method stub
    Log.e("generateView", "position = "+position);
    View v = LayoutInflater.from(mContext).inflate(R.layout.swipe_lv_item,null);
    pos = position;
    final SwipeLayout swipeLayout = (SwipeLayout) v.findViewById(R.id.swipe);

    swipeLayout.addSwipeListener(new SimpleSwipeListener() {
      @Override
      public void onOpen(SwipeLayout layout) {//当隐藏的删除menu被打开的时候的回调函数
        // TODO Auto-generated method stub
        YoYo.with(Techniques.Tada).duration(500).delay(100).playOn(layout.findViewById(R.id.trash));

      }
    });

    swipeLayout.setOnDoubleClickListener(new SwipeLayout.DoubleClickListener() {
          @Override
          public void onDoubleClick(SwipeLayout layout,
              boolean surface) {
            Toast.makeText(mContext, "DoubleClick",Toast.LENGTH_SHORT).show();

          }
        });
//   v.findViewById(R.id.delete).setOnClickListener(
//       new View.OnClickListener() {
//         @Override
//         public void onClick(View view) {
//           Toast.makeText(mContext, "click delete position = "+pos,Toast.LENGTH_SHORT).show();
//           swipeLayout.close();
//         }
//       });

    return v;
  }

  @Override
  public int getSwipeLayoutResourceId(int position) {
    // TODO Auto-generated method stub
    return R.id.swipe;
  }

}

注意, generateView只是加布局,最好不要在里面设置点击事件。点击事件设置fillValues这个方法中。

Activity.java如下:

package com.example.firstactivity;

import java.util.ArrayList;
import java.util.List;

import com.example.adapter.ListViewAdapter;

import android.app.Activity;
import android.os.Bundle;
import android.widget.ListView;

import com.daimajia.swipe.util.Attributes;

public class SwipeListViewActivity extends Activity{

  private ListView mListView;
  private ListViewAdapter mAdapter;
  private List<String> mDatas;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.swipe_layout_main);

    getData();

    mListView = (ListView) findViewById(R.id.swipe_listview);
    mAdapter = new ListViewAdapter(this, mDatas);
    mAdapter.setMode(Attributes.Mode.Single);
    mListView.setAdapter(mAdapter);
  }

  public void getData(){
    mDatas = new ArrayList<String>();
    //for(int i =0; i<10; i++){
      mDatas.add("A");
      mDatas.add("B");
      mDatas.add("C");
      mDatas.add("D");
      mDatas.add("E");
      mDatas.add("F");
      mDatas.add("G");
      mDatas.add("H");
      mDatas.add("I");
      mDatas.add("J");

    //}
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • SwipeLayout框架实现侧拉删除编辑功能

    本文实例为大家分享了SwipeLayout实现侧拉删除编辑的具体代码,供大家参考,具体内容如下 第一步.添加依赖 dependencies { compile 'com.android.support:recyclerview-v7:21.0.0' compile 'com.android.support:support-v4:20.+' compile "com.daimajia.swipelayout:library:1.2.0@aar" } 第二步.布局文件 //建议最好是在Bo

  • 非常实用的侧滑删除控件SwipeLayout

    前言:项目中经常会用到类似于QQ侧滑点击删除的效果,网上的开源库也很多.个人感觉SwipeLayout最好用.下面介绍怎么使用. 一.首先导入需要的Jar包,有3个,AndroidSwipeLayout-v1.1.8.jar.AndroidViewAnimations-1.1.3.jar.nineoldandroids-2.4.0.jar.第一个jar包就是我们使用该控件的jar包,后面2个是侧滑出现删除menu的动画所需的jar包.下面就是怎么使用了. 主布局的xml文件如下,就是一个List

  • android实现简单左滑删除控件

    本文为大家分享了一个简单的android左滑删除控件,供大家参考,具体内容如下 import android.animation.ValueAnimator; import android.content.Context; import android.graphics.PointF; import android.support.v4.view.ViewConfigurationCompat; import android.util.AttributeSet; import android.v

  • AngularJS仿苹果滑屏删除控件

    AngularJs被用来开发单页面应用程序(SPA),利用AJAX调用配合页面的局部刷新,可以减少页面跳转,从而获得更好的用户体验.Angular的ngView及其对应的强大路由机制,是实现SPA应用的核心模块.本文所说的页面切换指的就是这个路由机制,即根据不同的url展示不同的视图. 前端开发中,为了对列表项进行快捷操作,有时就添个按钮来简单实现.但是,有时会发现按钮影响美观,甚至影响列表行的布局.稍在网上搜索无果,而写此仿苹果滑屏删除控件. 依赖项:angularJS.jQuery 测试浏览

  • Popupwindow 的简单实用案例(显示在控件下方)

    第一步: private PopupWindow mPopupWindow; 第二步:写一个popupwindow的布局文件XML <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_paren

  • iOS实现通过按钮添加和删除控件的方法

    本文实例为大家分享了iOS通过按钮添加和删除控件,供大家参考,具体内容如下 想要达到的效果如下: 先讲一下这个demo主要部分,即通过按钮实现增删图标 分析: 1.每一个图标需要两个数据,即图片和描述用的字符串 ,所以创建一个Item类来封装从plist文件读取出来的数据: 1)plist文件如下: 2)Item类: .h文件 #import <Foundation/Foundation.h> @interface Item : NSObject //描述的字符串 @property(nona

  • 一个强大的侧滑菜单控件ASwipeLayout

    前言 该控件的优点: 1.无论是在RecyclerView,ListView,还是LinearLayout等,只要是ViewGroup用该控件都能实现侧滑. 2.控件的手势滑动冲突已解决,不会出现嵌套到ScrollView等控件出现滑动不流畅的情况 3.控件使用简单,只需要在xml外套一层该控件就好了,秒接入 4.点击事件很方便,原来什么写法就什么写法 1.效果图 2.使用方式其实挺简单的,在设计的时候,就是想着怎么简单怎么来 2.1引入库: Step 1. Add it in your roo

  • Android侧滑菜单控件DrawerLayout使用详解

    DrawerLayout是Android V4包下一个带有侧滑功能的布局控件,可以根据手势展开与隐藏侧边栏,也可以随着侧边栏的点击改变主界面区的内容.并且只需要按照DrawerLayout规定的布局格式进行布局,即可实现左右侧滑效果. 一.约定的抽屉布局 DrawerLayout的布局一般分为三个部分:第一部分为主界面内容布局,第二部分为左边侧滑界面布局,第三部分为右边侧滑界面布局.那么系统是怎么区分左边侧滑和右边侧滑的代码块的呢?请注意DrawerLayout布局中侧滑部分的代码块必须指定an

  • android侧滑菜单控件DrawerLayout使用方法详解

    drawerLayout是Support Library包中实现了侧滑菜单效果的控件,可以说drawerLayout是因为第三方控件如MenuDrawer等的出现之后,google借鉴而出现的产物.drawerLayout分为侧边菜单和主内容区两部分,侧边菜单可以根据手势展开与隐藏(drawerLayout自身特性),主内容区的内容可以随着菜单的点击而变化(这需要使用者自己实现). 使用步骤: 创建一个DrawerLayout 为了添加导航抽屉,你需要在你的布局界面中声明一个DrawerLayo

  • Android实现左滑删除控件

    背景:在android开发中,列表是经常会使用到的一个主要控件,列表中可以展示大量的数据,像订单.商品.通讯录.浏览记录或者关注列表等等.可能产品一开始需求只做简单的数据展示,但后期随着功能越来越多,越来越完善,产品可能说在列表里面增加一些交互能力.比如说订单列表里面,一开始只是展示订单数据,后面需要加上删除订单的功能,以前Android中这种功能要的很多的可能就是长按操作这种的,因为程序猿只需要很少的代码就能实现.但是ios的习惯操作是左滑删除,为了保持统一的操作习惯,两端保持一致,最终产品会

  • Android控件View打造完美的自定义侧滑菜单

    一.概述 在App中,经常会出现侧滑菜单,侧滑滑出View等效果,虽然说Android有很多第三方开源库,但是实际上咱们可以自己也写一个自定义的侧滑View控件,其实不难,主要涉及到以下几个要点: 1.对Android中Window类中的DecorView有所了解 2.对Scroller类实现平滑移动效果 3.自定义ViewGroup的实现 首先来看看效果图吧:     下面现在就来说说这里咱们实现侧滑View的基本思路吧,这里我采用的是自定义一个继承于RelativeLayout的控件叫做XC

随机推荐