I have been attempting to use an android.preference.DialogPreference inflated from XML, but the documentation seems to be missing some essential bits, and I can
This one is weird, you need to subclass DialogPreference. The subclass does not need to do anything. So
public class MyDialogPreference extends DialogPreference {
public MyDialogPreference(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
}
can be instantiated. While a plane old DialogPreference can not. Very weird, they should be the exact same thing.