I have a class defined like this
public class MyDialog extends DialogPreference {
and in the preference.xml
<com.package.pak.MyDialog
android:key="my_key" android:title="Title"
android:dialogTitle="title"
android:dialogIcon="@drawable/app_icon" android:negativeButtonText="@null"
android:positiveButtonText="Ok" />
My question is how can I programatically start the MyDialog ? Is there something I can call like an intent or ?
Thanks