notifyDataSetChanged () в адаптере не работает - PullRequest
0 голосов
/ 20 февраля 2019

В моем recyclerView есть кнопка удаления.Когда кнопка нажата, пользователь может удалить ее в зависимости от положения.После этого я бы хотел recyclerView обновить.Я добавил код ниже в своем классе адаптера, но он все еще не работает.

 notifyItemRemoved(position)
 notifyDataSetChanged()

Адаптер

 holder.mDeleteImage.setOnClickListener {
            val builder = AlertDialog.Builder(context)

            // Set the alert dialog title
            builder.setTitle("Delete Item")

            // Display grid_item message on alert dialog
            builder.setMessage("Are you want to delete this item ?")

            // Display grid_item negative button on alert dialog
            builder.setNegativeButton("No") { dialog, which ->
                dialog.dismiss()
            }

            // Set grid_item positive button and its click listener on alert dialog
            builder.setPositiveButton("YES") { dialog, which ->

                var dialog = Util().callDialog(context)

                GlobalScope.launch(Dispatchers.Main) {

                    val service = RetrofitFactory.makeRetrofitService()
                    service.delete(item.id)
                }
                val handler = Handler()
                handler.postDelayed(Runnable {
                    dialog.dismiss()
                    notifyItemRemoved(position)
                    notifyDataSetChanged()
                    context.longToast("Done")
                }, 5000)
            }
            // Finally, make the alert dialog using builder
            val dialog: AlertDialog = builder.create()

            // Display the alert dialog on app interface
            dialog.show()
        }
    }

Ответы [ 2 ]

0 голосов
/ 20 февраля 2019

Вы должны удалить выбранный элемент из списка, а затем уведомить адаптер.

Пожалуйста, попробуйте этот код:

yourDataset.removeAt(position);
notifyItemRemoved(position);
notifyItemRangeChanged(position, yourDataset.size()); //If needed

Надеемся, что эти шаги помогут вам удалить элементы из представления переработчика.

0 голосов
/ 20 февраля 2019

Вы не удаляете элемент из списка, поэтому notifyItemRemoved(position) и notifyDataSetChanged() не работают

Внесите изменения в коде ниже

handler.postDelayed(Runnable {
                    dialog.dismiss()
                    // remove here item from yourlist then use notifyItemRemoved(position)
                    arrayList.removeAt(position)
                    notifyItemRemoved(position)
                    //notifyDataSetChanged() // Is not necessary.
                    context.longToast("Done")
                }, 5000)
...