DragSortListView(https://github.com/bauerca/drag-sort-listview)非常适合拖动排序,我在我的项目中使用它,但是我遇到了一个小问题。
我使用带删除模式的lib,每个列表项右侧都有一个delete-x动作,当用户点击动作时,该项被删除,但我想添加一个警告对话框供用户确认删除,但不知道该怎么做。!
答案 0 :(得分:2)
你必须覆盖删除功能,就像它在Documentation
中所说的那样 @Override
public void remove(int which) {
Builder builder = new AlertDialog.Builder(context);
builder.setPositiveButton(R.string.your_button_title, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// do some custom delete code (e.g delete datamodel)
}
});
builder.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// call notifyDataSetChanged() on your adapter otherwise it will be gone!
}
});
builder.setTitle(R.string.your_title);
builder.setMessage(context.getString(R.string.your_message));
builder.show();
}
为了调用此方法,您必须实现 RemoveListener ,当然您还必须添加侦听器:
myDragSortListView.setRemoveListener(this);
希望有帮助,!