I want to open EditTextPreference when I open Preference screen. I try
mLabel = (EditTextPreference) findPreference("labelKey");
mLabel.getDialog().show() // this does not work. getDialog return null
mLable.getEditText().requestFocus(); // this does not work too.
How can I do this?
If I understand you right, you need to open a single preference inside your preference screen as soon as you open your preferences (??).
You might want to have a look at this: https://stackoverflow.com/a/4869034/668240