BasicDialog

Difference between a BasicDialog and an AlertDialog

Dialogs in Android1 are used to shows alerts for making decisions or to edit a single value2.
But there are some differences between an AlertDialog and a BasicDialog.
In an AlertDialog you always want to show a message and at least one Button for user interaction.
In a BasicDialog you have a custom view to a TextView or something more complex.

The first working example was quickly done

Read More

  1. http://developer.android.com/guide/topics/ui/dialogs.html []
  2. http://developer.android.com/design/building-blocks/dialogs.html []