I have a common prefix that is assigned an intent, so when I click this preference another action opens.
I want to put this indicator of a small arrow ( this one ), i.e. I want to style this preference just like DialogPreference.
I searched through Android sources and found several related things, such as com.android.internal.R.attr.dialogPreferenceStyle - which is passed to the preference constructor by DialogPreference, but it is internal. There is also a style called "Preference.DialogPreference" in the android styles.xml file, but it is also not public.
Any clues? Obviously, I canβt use DialogPreference because I donβt show a dialog, I show Activity, so I need to adjust my preference ....
source share