Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- AlertDialog.Builder ano_todo = new AlertDialog.Builder(AnoTodoActivity.this);
- ano_todo.setTitle("AVISO!!!!");
- ano_todo.setMessage("DESEJA APAGAR TODOS OS NÚMEROS?");
- ano_todo.setPositiveButton("OK", new DialogInterface.OnClickListener() {
- @Override
- public void onClick(DialogInterface dialog, int which) {
- SketchwareUtil.showMessage(getApplicationContext(), "CLIQUE E AGUARDE 3 SEGUNDOS PARA APAGAR!");
- // Remova todos os números
- fire_ano.removeValue();
- anotodos.clear();
- SketchwareUtil.showMessage(getApplicationContext(), "Apagando...");
- // Atualize o adapter
- ((BaseAdapter) listview2_ano.getAdapter()).notifyDataSetChanged();
- // Limpe o mapa
- Mapanotodo.clear();
- }
- });
- ano_todo.setNegativeButton("Cancelar", new DialogInterface.OnClickListener() {
- @Override
- public void onClick(DialogInterface dialog, int which) {
- // Nenhuma ação necessária ao clicar em "Cancelar"
- ((BaseAdapter) listview2_ano.getAdapter()).notifyDataSetChanged();
- }
- });
- ano_todo.create().show();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement