我希望能够长按 ListView 单元格,以便弹出一个 AlertDialog 并让我删除 ListView 中的一行。但是,长按不注册。我什至尝试设置
userChatroomListView.setLongClickable(true)
下面是代码。
userChatroomListView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView<?> adapterView, View view, int i, long l) {
AlertDialog.Builder adb = new AlertDialog.Builder(UserInfoActivity.this);
final String roomName = ((TextView) view).getText().toString();
adb.setTitle("Delete?");
adb.setMessage("Are you sure you want to delete " + roomName);
final int positionToRemove = i;
adb.setNegativeButton("No", null);
adb.setPositiveButton("Yes", new AlertDialog.OnClickListener() {
@Override
public void onClick(DialogInterface dialogInterface, int i) {
userChatrooms.remove(positionToRemove);
userRoomsRef.child(roomName).removeValue();
BaseAdapter adapter = (BaseAdapter) userChatroomListView.getAdapter();
adapter.notifyDataSetChanged();
}
});
return false;
}
并且在 xml 中也这样做了。现在我该怎么做?
这是xml代码:
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/ChatroomListTextView"
android:layout_alignParentBottom="true"
android:id="@+id/userChatroomsListView"
android:background="#29dcc4"
android:longClickable="true"
>
</ListView>