重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本文实例为大家分享了SwipeLayout实现侧拉删除编辑的具体代码,供大家参考,具体内容如下
10年专注成都网站制作,成都企业网站建设,个人网站制作服务,为大家分享网站制作知识、方案,网站设计流程、步骤,成功服务上千家企业。为您提供网站建设,网站制作,网页设计及定制高端网站建设服务,专注于成都企业网站建设,高端网页制作,对成都人造雾等多个领域,拥有多年的营销推广经验。
第一步、添加依赖
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" }
第二步、布局文件
//建议最好是在BottomView里面添加layout_gravity属性,或者在代码里面添加
第三步、在Activity中得到SwipeLayout实例.
SwipeLayout swipeLayout = (SwipeLayout) view.findViewById(R.id.swipelayout); //设置侧拉的模式 swipeLayout.setShowMode(SwipeLayout.ShowMode.LayDown); //如果布局文件里面有layout_gravity属性,这句可以忽略 //swipeLayout.addDrag(SwipeLayout.DragEdge.Left, findViewById(R.id.bottom_wrapper));
到此为止,一个条目的侧滑功能就实现了。
如果我们在Listview里面使用这个功能,那么我们需要继承BaseSwipeAdapter,并且复写里面的几个方法:
//获取swipeLayout布局 @Override public int getSwipeLayoutResourceId(int position) { return R.id.swipelayout; } //生成条目布局,相当于BaseAdapter里面的getView()方法 @Override public View generateView(int position, ViewGroup parent) { View view = LayoutInflater.from(mContext).inflate(R.layout.listview_item, null); SwipeLayout swipeLayout = (SwipeLayout) view.findViewById(R.id.swipelayout); //这里写对布局中控件的一些初始化 swipeLayout.setShowMode(SwipeLayout.ShowMode.LayDown); return view; } //为条目里面的控件赋值 @Override public void fillValues(int position, View convertView) { } //下面的几个方法是BaseAdapter里面的方法,BaseSwipeAdapter也是继承自BaseAdapter @Override public int getCount() { return 0; } @Override public Object getItem(int i) { return null; } @Override public long getItemId(int i) { return 0; }
这样,一个ListView的条目侧滑就基本实现了。点击删除/编辑的代码我们在方法generateView()里面实现。下面为Listview添加条目点击事件:
//此处的swipeLayout是generateView()里面从条目布局里面获取的 swipeLayout.getSurfaceView().setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { } });
如果我们需要在侧滑的时候实现其他逻辑的话,我们可以添加侧滑监听:
swipeLayout.addSwipeListener(new SwipeLayout.SwipeListener() { @Override public void onClose(SwipeLayout layout) { //when the SurfaceView totally cover the BottomView. } @Override public void onUpdate(SwipeLayout layout, int leftOffset, int topOffset) { //you are swiping. } @Override public void onStartOpen(SwipeLayout layout) { } @Override public void onOpen(SwipeLayout layout) { //when the BottomView totally show. } @Override public void onStartClose(SwipeLayout layout) { } @Override public void onHandRelease(SwipeLayout layout, float xvel, float yvel) { //when user's hand released. } });
到此,ListView侧滑功能基本实现。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持创新互联。