Home
last modified time | relevance | path

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

/aosp12/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/role/ui/
H A DRequestRoleFragment.java82 private CheckBox mDontAskAgainCheck; field in RequestRoleFragment
176 mDontAskAgainCheck = dontAskAgainCheck; in onCreateDialog()
177 mDontAskAgainCheck.setOnClickListener(view -> updateUi()); in onCreateDialog()
180 mDontAskAgainCheck.setChecked(dontAskAgain); in onCreateDialog()
245 if (mDontAskAgainCheck != null) { in onSaveInstanceState()
246 outState.putBoolean(STATE_DONT_ASK_AGAIN, mDontAskAgainCheck.isChecked()); in onSaveInstanceState()
283 if (mDontAskAgainCheck != null && mDontAskAgainCheck.isChecked()) { in onSetAsDefault()
356 boolean dontAskAgain = mDontAskAgainCheck != null && mDontAskAgainCheck.isChecked(); in updateUi()