Android item长按删除功能
这个可以在Adapter里面写
一般写完之后都会调用
publicvoidremoveItem(intpos){ this.mDatas.remove(pos); notifyItemRemoved(pos); }
可是这样写的话,删除多次,会乱套,没有刷新
所以改这样子写
publicvoidremoveItem(intpos){ this.mDatas.remove(pos); notifyItemRemoved(pos); if(pos!=mDatas.size()){//如果移除的是最后一个,忽略 notifyItemRangeChanged(pos,mDatas.size()-pos); } }
PS:下面看下android长按删除listview的item
首先要继承OnItemLongClickListener
publicclassSet_MusicextendsListActivityimplementsOnItemLongClickListener{
然后设置权限:
getListView().setOnItemLongClickListener(this);
重写方法
publicbooleanonItemLongClick(AdapterView>arg0,Viewarg1,intarg2, longarg3){ Stringstr=list.get(arg2).get("name");
删掉长按的item
list.remove(arg2);
动态更新listview
adapter.notifyDataSetChanged();
以上所述是小编给大家介绍的Androiditem长按删除,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!