I've tried to use DialogFragment on 3.0- devices, which not supports Fragment or DialogFragment by SDK level.
So, I decided to use Android compatibility library, which supports Fragment.
Then I created a DialogFragment class that extends android.support.v4.app.DialogFragment.
But.....When I tried to show my DialogFragment using DialogFragment.show(), I notified that show(FragmentManager, String) accepts first argument as android.app.FragmentManager, not android.support.v4.app.FragmentManager.
I think android.app.FragmentManager cannot be used in Android 3.0- devices, because it is not included in SDK.
Is there any way to show DialogFragment with Compatibility library? Am I have to use another way to show My DialogFragment with compatibility library?
Any help will be much appreciated. :)