Preference 以外のアクティビティで ListPreference ダイアログを表示したいと考えています。
ダイアログを作成するコードは次のとおりです
// this is my current activity
ListPreference listPreference = new ListPreference(this);
listPreference.setDialogIcon(R.drawable.auto_download);
listPreference.setTitle(R.string.autoDownloadTitle);
listPreference.setEntries(R.array.autoDownloadEntries);
listPreference.setEntryValues(R.array.autoDownloadValues);
listPreference.setNegativeButtonText(R.string.cancel);
Dialog dialog = listPreference.getDialog();
私の問題は、ダイアログが常に null であるということです...何が欠けていましたか?