Searched refs:mPasswordEntry (Results 1 – 8 of 8) sorted by relevance
59 private EditText mPasswordEntry; field in KeyguardPasswordViewController101 mPasswordEntry.setTextColor(textColor); in reloadColors()102 mPasswordEntry.setHighlightColor(textColor); in reloadColors()103 mPasswordEntry.setBackgroundTintList(ColorStateList.valueOf(textColor)); in reloadColors()104 mPasswordEntry.setForegroundTintList(ColorStateList.valueOf(textColor)); in reloadColors()127 mPasswordEntry = mView.findViewById(mView.getPasswordTextViewId()); in KeyguardPasswordViewController()134 mPasswordEntry.setTextOperationUser(UserHandle.of(KeyguardUpdateMonitor.getCurrentUser())); in onViewAttached()135 mPasswordEntry.setKeyListener(TextKeyListener.getInstance()); in onViewAttached()136 mPasswordEntry.setInputType(InputType.TYPE_CLASS_TEXT in onViewAttached()140 mPasswordEntry.setSelected(true); in onViewAttached()[all …]
40 protected PasswordTextView mPasswordEntry; field in KeyguardPinBasedInputView56 return mPasswordEntry.requestFocus(direction, previouslyFocusedRect); in onRequestFocusInDescendants()65 mPasswordEntry.setEnabled(enabled); in setPasswordEntryEnabled()67 if (enabled && !mPasswordEntry.hasFocus()) { in setPasswordEntryEnabled()68 mPasswordEntry.requestFocus(); in setPasswordEntryEnabled()74 mPasswordEntry.setEnabled(enabled); in setPasswordEntryInputEnabled()76 if (enabled && !mPasswordEntry.hasFocus()) { in setPasswordEntryInputEnabled()77 mPasswordEntry.requestFocus(); in setPasswordEntryInputEnabled()131 mPasswordEntry.reset(animate, announce); in resetPasswordText()136 return LockscreenCredential.createPinOrNone(mPasswordEntry.getText()); in getEnteredCredential()[all …]
36 protected PasswordTextView mPasswordEntry; field in KeyguardPinBasedInputViewController67 mPasswordEntry = mView.findViewById(mView.getPasswordTextViewId()); in KeyguardPinBasedInputViewController()82 mPasswordEntry.setOnKeyListener(mOnKeyListener); in onViewAttached()83 mPasswordEntry.setUserActivityListener(this::onUserInput); in onViewAttached()89 if (mPasswordEntry.isEnabled()) { in onViewAttached()90 mPasswordEntry.deleteLastChar(); in onViewAttached()95 if (mPasswordEntry.isEnabled()) { in onViewAttached()108 if (mPasswordEntry.isEnabled()) { in onViewAttached()129 mPasswordEntry.requestFocus(); in onResume()
62 private TextView mPasswordEntry; field in KeyguardPasswordView116 mPasswordEntry = findViewById(getPasswordTextViewId()); in onFinishInflate()117 mPasswordEntryDisabler = new TextViewInputDisabler(mPasswordEntry); in onFinishInflate()123 return mPasswordEntry.requestFocus(direction, previouslyFocusedRect); in onRequestFocusInDescendants()128 mPasswordEntry.setText(""); in resetPasswordText()133 return LockscreenCredential.createPasswordOrNone(mPasswordEntry.getText()); in getEnteredCredential()138 mPasswordEntry.setEnabled(enabled); in setPasswordEntryEnabled()
173 mPasswordEntry.requestFocus(); in reset()233 if (mPasswordEntry.getText().length() == 8) { in checkPuk()234 mPukText = mPasswordEntry.getText(); in checkPuk()242 int length = mPasswordEntry.getText().length(); in checkPin()244 mPinText = mPasswordEntry.getText(); in checkPin()251 return mPinText.equals(mPasswordEntry.getText()); in confirmPin()
135 String entry = mPasswordEntry.getText(); in verifyPasswordAndUnlock()149 mCheckSimPinThread = new CheckSimPin(mPasswordEntry.getText(), mSubId) { in verifyPasswordAndUnlock()
52 private PasswordTextView mPasswordEntry; field in KeyguardPinBasedInputViewControllerTest90 when(mPinBasedInputView.findViewById(1)).thenReturn(mPasswordEntry); in setup()114 verify(mPasswordEntry).requestFocus(); in onResume_requestsFocus()
57 private PasswordTextView mPasswordEntry; field in KeyguardAbsKeyInputViewControllerTest86 when(mAbsKeyInputView.findViewById(1)).thenReturn(mPasswordEntry); in setup()