HomeSort by relevance Sort by last modified time
    Searched defs:rootPreferences (Results 1 - 4 of 4) sorted by null

  /packages/apps/Settings/src/com/android/settings/datausage/
DataUsageSummary.java 195 PreferenceScreen rootPreferences = getPreferenceManager().inflateFromResource(
197 Preference pref = rootPreferences.getPreference(0);
198 rootPreferences.removeAll();
DataUsageSummaryLegacy.java 223 PreferenceScreen rootPreferences = getPreferenceManager().inflateFromResource(
225 Preference pref = rootPreferences.getPreference(0);
226 rootPreferences.removeAll();
  /frameworks/support/preference/src/main/java/androidx/preference/
PreferenceManager.java 125 * @param rootPreferences Optional existing hierarchy to merge the new
133 PreferenceScreen rootPreferences) {
138 rootPreferences = (PreferenceScreen) inflater.inflate(resId, rootPreferences);
139 rootPreferences.onAttachedToHierarchy(this);
144 return rootPreferences;
  /frameworks/base/core/java/android/preference/
PreferenceManager.java 258 * @param rootPreferences Optional existing hierarchy to merge the new
263 PreferenceScreen inflateFromIntent(Intent queryIntent, PreferenceScreen rootPreferences) {
295 rootPreferences = (PreferenceScreen) inflater
296 .inflate(parser, rootPreferences, true);
301 rootPreferences.onAttachedToHierarchy(this);
303 return rootPreferences;
312 * @param rootPreferences Optional existing hierarchy to merge the new
319 PreferenceScreen rootPreferences) {
324 rootPreferences = (PreferenceScreen) inflater.inflate(resId, rootPreferences, true)
    [all...]

Completed in 152 milliseconds