Home
last modified time | relevance | path

Searched refs:footerPreference (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Settings/src/com/android/settings/accessibility/
DAccessibilityFooterPreferenceController.java46 final AccessibilityFooterPreference footerPreference = in displayPreference() local
48 updateFooterPreferences(footerPreference); in displayPreference()
63 private void updateFooterPreferences(AccessibilityFooterPreference footerPreference) { in updateFooterPreferences() argument
68 .append(footerPreference.getTitle()); in updateFooterPreferences()
69 footerPreference.setContentDescription(sb); in updateFooterPreferences()
72 footerPreference.setLearnMoreAction(view -> { in updateFooterPreferences()
81 footerPreference.setLearnMoreContentDescription(learnMoreContentDescription); in updateFooterPreferences()
DAccessibilityButtonFooterPreferenceController.java45 final AccessibilityFooterPreference footerPreference = in displayPreference() local
47 footerPreference.setTitle( in displayPreference()
DToggleFeaturePreferenceFragment.java520 final AccessibilityFooterPreference footerPreference = in createFooterPreference() local
522 footerPreference.setSummary(summary); in createFooterPreference()
523 footerPreference.setContentDescription( in createFooterPreference()
528 footerPreference.setLearnMoreAction(view -> { in createFooterPreference()
537 footerPreference.setLearnMoreContentDescription(learnMoreContentDescription); in createFooterPreference()
539 screen.addPreference(footerPreference); in createFooterPreference()
/packages/apps/Settings/src/com/android/settings/accounts/
DEnterpriseDisclosurePreferenceController.java66 final FooterPreference footerPreference = screen.findPreference(getPreferenceKey()); in updateFooterPreference() local
67 footerPreference.setTitle(disclosure); in updateFooterPreference()
68 footerPreference.setLearnMoreAction(view -> { in updateFooterPreference()
73 footerPreference.setLearnMoreContentDescription(learnMoreContentDescription); in updateFooterPreference()
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothSwitchPreferenceController.java54 FooterPreference footerPreference) { in BluetoothSwitchPreferenceController() argument
55 this(context, new RestrictionUtils(), switchController, footerPreference); in BluetoothSwitchPreferenceController()
60 SwitchWidgetController switchController, FooterPreference footerPreference) { in BluetoothSwitchPreferenceController() argument
64 mFooterPreference = footerPreference; in BluetoothSwitchPreferenceController()
/packages/apps/Settings/src/com/android/settings/display/
DSmartAutoRotatePreferenceFragment.java71 final Preference footerPreference = findPreference(FooterPreference.KEY_FOOTER); in onCreateView() local
72 if (footerPreference != null) { in onCreateView()
73 footerPreference.setTitle(Html.fromHtml(getString(R.string.smart_rotate_text_headline), in onCreateView()
75 footerPreference.setVisible(isRotationResolverServiceAvailable(activity)); in onCreateView()
/packages/apps/Settings/src/com/android/settings/applications/intentpicker/
DAppLaunchSettings.java357 final FooterPreference footerPreference = (FooterPreference) findPreference( in initFooter() local
359 footerPreference.setTitle(footerText); in initFooter()
361 footerPreference.setLearnMoreAction(view -> { in initFooter()
367 footerPreference.setLearnMoreContentDescription(learnMoreContentDescription); in initFooter()
/packages/apps/Settings/src/com/android/settings/notification/zen/
DZenCustomRuleMessagesSettings.java68 Preference footerPreference = screen.findPreference(FooterPreference.KEY_FOOTER); in updatePreferences() local
69 footerPreference.setTitle(mContext.getResources().getString( in updatePreferences()
DZenCustomRuleCallsSettings.java77 Preference footerPreference = screen.findPreference(FooterPreference.KEY_FOOTER); in updatePreferences() local
78 footerPreference.setTitle(mContext.getResources().getString( in updatePreferences()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/
DUnusedAppsFragment.kt163 val footerPreference = preferenceFragment.createFooterPreference(context!!) in <lambda>() constant
164 footerPreference.key = INFO_MSG_KEY in <lambda>()
165 infoMsgCategory?.addPreference(footerPreference) in <lambda>()