Searched defs:mPasswordView (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Browser/src/com/android/browser/
H A DHttpAuthenticationDialog.java41 private TextView mPasswordView; field in class:HttpAuthenticationDialog
61 return mPasswordView.getText().toString();
101 mPasswordView.setText(password);
114 mPasswordView = (TextView) v.findViewById(R.id.password_edit);
115 mPasswordView.setOnEditorActionListener(new OnEditorActionListener() {
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWriteWifiConfigToNfcDialog.java68 private TextView mPasswordView; field in class:WriteWifiConfigToNfcDialog
102 mPasswordView = (TextView) mView.findViewById(R.id.password);
104 mPasswordView.addTextChangedListener(this);
122 String password = mPasswordView.getText().toString();
151 mPasswordView.setVisibility(View.GONE);
156 imm.hideSoftInputFromWindow(mPasswordView.getWindowToken(), 0);
226 if (mPasswordView != null) {
228 mSubmitButton.setEnabled(mPasswordView.length() > 0);
230 mSubmitButton.setEnabled(mPasswordView.length() >= 8);
249 mPasswordView
[all...]
H A DWifiConfigController.java113 private TextView mPasswordView; field in class:WifiConfigController
351 if (mPasswordView != null &&
352 ((mAccessPointSecurity == AccessPoint.SECURITY_WEP && mPasswordView.length() == 0) ||
353 (mAccessPointSecurity == AccessPoint.SECURITY_PSK && mPasswordView.length() < 8))) {
399 if (mPasswordView.length() != 0) {
400 int length = mPasswordView.length();
401 String password = mPasswordView.getText().toString();
414 if (mPasswordView.length() != 0) {
415 String password = mPasswordView.getText().toString();
466 if (mPasswordView
[all...]

Completed in 92 milliseconds