Advertisement
Sketchware

Verifica se tem algo pra exluir no item List se não tiver avisa

Jun 28th, 2023
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.01 KB | None | 0 0
  1. if (anotodo.size() > 0) {
  2.     ano_todo.setPositiveButton("ok", new DialogInterface.OnClickListener() {
  3.         @Override
  4.         public void onClick(DialogInterface _dialog, int _which) {
  5.             SketchwareUtil.showMessage(getApplicationContext(), "CLICA E AGUARDE 3 SEGUNDOS PARA APAGAR!\n");
  6.             n = 0;
  7.             for (int _repeat50 = 0; _repeat50 < (int)(anotodo.size()); _repeat50++) {
  8.                 fire_ano.child(anotodo.get((int)n).get("keyy").toString()).removeValue();
  9.                 n++;
  10.             }
  11.             SketchwareUtil.showMessage(getApplicationContext(), "Você apagou tudo!");
  12.         }
  13.     });
  14. } else {
  15.     SketchwareUtil.showMessage(getApplicationContext(), "Não há nada para apagar!");
  16.     return;
  17. }
  18.  
  19. ano_todo.setNegativeButton("Cancelar ", new DialogInterface.OnClickListener() {
  20.     @Override
  21.     public void onClick(DialogInterface _dialog, int _which) {
  22.         ((BaseAdapter)listview2_ano.getAdapter()).notifyDataSetChanged();
  23.     }
  24. });
  25.  
  26. ano_todo.create().show();
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement