Is possible to hide a preference in a PreferenceScreen? I don't need to disable it, it must be invisible (sometimes)
Important: I need to keep the min API level 7+
|
Is possible to hide a preference in a PreferenceScreen? I don't need to disable it, it must be invisible (sometimes) Important: I need to keep the min API level 7+ |
||||
|
|
|
If your logout button (Preference) is in the PreferenceScreen, do this:
Else if your logout button (Preference) is in a PreferenceCategory (which is inside a PreferenceScreen), do this:
You can put whatever your preferences name is, this is for example for a logout preference, if you have another Preference (eg CheckBoxPreference) you need to cast that specific Preference before findPreference. |
|||
|
|
|
Something like that should works:
|
|||
|
|