Tutorial

Tutorials, how to’s with large content

Android How To Make an AlertDialog

Snippets, Tutorial
To make an AlertDialog you have to write this code: AlertDialog.Builder alertDelete = new AlertDialog.Builder(ListsActivity.this); //HERE YOU WILL WRITE THE MESSAGE YOU WANT alertDelete.setMessage(R.string.delete_confirm); //HERE IS THE POSITIVE BUTTON. YOU…
keyboard_arrow_up