首页 > 系统 > Android > 正文

Android item长按删除功能

2019-12-12 02:28:46
字体:
来源:转载
供稿:网友

这个可以在Adapter里面写

一般写完之后都会调用

 public void removeItem(int pos){    this.mDatas.remove(pos);    notifyItemRemoved(pos);  }

可是这样写的话,删除多次,会乱套,没有刷新

所以改这样子写

  public void removeItem(int pos){    this.mDatas.remove(pos);    notifyItemRemoved(pos);    if(pos != mDatas.size()){ // 如果移除的是最后一个,忽略      notifyItemRangeChanged(pos, mDatas.size() - pos);    }  }

PS:下面看下android 长按删除listview的item

首先要继承OnItemLongClickListener

public class Set_Music extends ListActivity implements OnItemLongClickListener{

然后设置权限:

getListView().setOnItemLongClickListener(this);

重写方法

public boolean onItemLongClick(AdapterView<?> arg0, View arg1, int arg2,long arg3) {String str = list.get(arg2).get("name");

删掉长按的item

list.remove(arg2);

动态更新listview

adapter.notifyDataSetChanged();

以上所述是小编给大家介绍的Android item长按删除,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对武林网网站的支持!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表