9

The method showDialog(int) from the type Activity is deprecated.

enter image description here

What's the reason? and how to solve it?

swiftBoy
  • 35,607
  • 26
  • 136
  • 135
Sekar
  • 1,061
  • 7
  • 21
  • 38

1 Answers1

10

What's the reason?

http://developer.android.com/reference/android/app/Activity.html#showDialog(int)

Android DialogFragment vs Dialog

How to solve it?

Use the new DialogFragment class with FragmentManager instead; this is also available on older platforms through the Android compatibility package.

http://android-developers.blogspot.in/2012/05/using-dialogfragments.html

Community
  • 1
  • 1
Dheeresh Singh
  • 15,643
  • 3
  • 38
  • 36
  • Date Picker example: http://stackoverflow.com/questions/11895606/android-datepicker-and-datepicker-dialog/16429329#16429329 – Hpsaturn May 07 '13 at 22:14