Skip to content Skip to sidebar Skip to footer

Timepickerfragment Show() Method Cannot Be Resolved

I'm trying to use a dialog fragment to select dates, but the timePickerFragment.show(...) method in the Signigicant_Other class below cannot be resolved. The show method is sugge

Solution 1:

You need to use

import android.support.v4.app.DialogFragment;

Since you are using the SupportFragmentManager. Good luck!

Post a Comment for "Timepickerfragment Show() Method Cannot Be Resolved"