Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/wifi/
DWifiConfigController.java110 private TextView mPasswordView; field in WifiConfigController
350 if (mPasswordView != null && in enableSubmitIfAppropriate()
351 ((mAccessPointSecurity == AccessPoint.SECURITY_WEP && mPasswordView.length() == 0) || in enableSubmitIfAppropriate()
352 (mAccessPointSecurity == AccessPoint.SECURITY_PSK && mPasswordView.length() < 8))) { in enableSubmitIfAppropriate()
398 if (mPasswordView.length() != 0) { in getConfig()
399 int length = mPasswordView.length(); in getConfig()
400 String password = mPasswordView.getText().toString(); in getConfig()
413 if (mPasswordView.length() != 0) { in getConfig()
414 String password = mPasswordView.getText().toString(); in getConfig()
473 if (mPasswordView.isShown()) { in getConfig()
[all …]
DWriteWifiConfigToNfcDialog.java68 private TextView mPasswordView; field in WriteWifiConfigToNfcDialog
117 mPasswordView = (TextView) mView.findViewById(R.id.password); in onCreate()
119 mPasswordView.addTextChangedListener(this); in onCreate()
137 String password = mPasswordView.getText().toString(); in onClick()
166 mPasswordView.setVisibility(View.GONE); in onClick()
171 imm.hideSoftInputFromWindow(mPasswordView.getWindowToken(), 0); in onClick()
246 if (mPasswordView != null) { in enableSubmitIfAppropriate()
248 mSubmitButton.setEnabled(mPasswordView.length() > 0); in enableSubmitIfAppropriate()
250 mSubmitButton.setEnabled(mPasswordView.length() >= 8); in enableSubmitIfAppropriate()
269 mPasswordView.setInputType( in onCheckedChanged()
/packages/apps/Browser/src/com/android/browser/
DHttpAuthenticationDialog.java41 private TextView mPasswordView; field in HttpAuthenticationDialog
61 return mPasswordView.getText().toString(); in getPassword()
101 mPasswordView.setText(password); in reshow()
114 mPasswordView = (TextView) v.findViewById(R.id.password_edit); in createDialog()
115 mPasswordView.setOnEditorActionListener(new OnEditorActionListener() { in createDialog()