Example usage for Java android.preference PreferenceGroup fields, constructors, methods, implement or subclass
The text is from its open source code.
void | addItemFromInflater(Preference preference) Called by the inflater to add an item to this group. |
boolean | addPreference(Preference preference) Adds a Preference at the correct position based on the preference's order. |
Preference | findPreference(CharSequence key) Finds a Preference based on its key. |
Context | getContext() Returns the android.content.Context of this Preference. |
Preference | getPreference(int index) Returns the Preference at a particular index. |
int | getPreferenceCount() Returns the number of children Preference s. |
PreferenceManager | getPreferenceManager() Gets the PreferenceManager that manages this Preference object's tree. |
void | removeAll() Removes all Preference Preferences from this group. |
boolean | removePreference(Preference preference) Removes a Preference from this group. |
void | setEnabled(boolean enabled) Sets whether this Preference is enabled. |
void | setOnPreferenceClickListener(OnPreferenceClickListener onPreferenceClickListener) Sets the callback to be invoked when this Preference is clicked. |