I’m trying to override dialog building behavior of...
# android
m
I’m trying to override dialog building behavior of a super class
PreferenceDialogFragmentCompat
for all subclasses (
ListPreferenceDialogFragment
,
EditTextPreferenceDialogFragment
, etc) but don’t want to duplicate the overriding code for each class. You can see an example of what I mean here: https://stackoverflow.com/a/61424867/444761 which shows the new class for list preference dialogs (
MaterialListPreferenceDialogFragment
). But I also want to do the other dialog preference classes without duplicating code. Is it possible?