I\'ve an application that you can show and close several Dialogs with:
showDialog(...) removeDialog(...)
I play a little bit with the applicati
In API level 8, onCreateDialog(int) was deprecated in favor of onCreateDialog(int,Bundle). If you implement only the latter method and run the app on a device with an API level lower than 8, you get the described error message.
onCreateDialog(int)
onCreateDialog(int,Bundle)
The solution is to implement onCreateDialog(int)