Home
last modified time | relevance | path

Searched refs:RestrictedRadioButton (Results 1 – 3 of 3) sorted by relevance

/aosp12/packages/apps/Settings/src/com/android/settings/
H A DRestrictedRadioButton.java30 public class RestrictedRadioButton extends RadioButton { class
35 public RestrictedRadioButton(Context context) { in RestrictedRadioButton() method in RestrictedRadioButton
39 public RestrictedRadioButton(Context context, AttributeSet attrs) { in RestrictedRadioButton() method in RestrictedRadioButton
43 public RestrictedRadioButton(Context context, AttributeSet attrs, int defStyleAttr) { in RestrictedRadioButton() method in RestrictedRadioButton
47 public RestrictedRadioButton(Context context, AttributeSet attrs, int defStyleAttr, in RestrictedRadioButton() method in RestrictedRadioButton
/aosp12/packages/apps/Settings/src/com/android/settings/notification/
H A DRedactionInterstitial.java40 import com.android.settings.RestrictedRadioButton;
100 private RestrictedRadioButton mShowAllButton;
101 private RestrictedRadioButton mRedactSensitiveButton;
119 mShowAllButton = (RestrictedRadioButton) view.findViewById(R.id.show_all); in onViewCreated()
121 (RestrictedRadioButton) view.findViewById(R.id.redact_sensitive); in onViewCreated()
174 private void checkNotificationFeaturesAndSetDisabled(RestrictedRadioButton button, in checkNotificationFeaturesAndSetDisabled()
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
H A DRedactionInterstitialTest.java22 import com.android.settings.RestrictedRadioButton;
173 return !((RestrictedRadioButton) getButton(resource)).isDisabledByAdmin(); in buttonEnabled()