HomeSort by relevance Sort by last modified time
    Searched refs:mTextInput (Results 1 - 6 of 6) sorted by null

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/base/
TextInputWizardFragment.java 76 private EditText mTextInput;
88 mTextInput = (EditText) action.findViewById(R.id.text_input);
108 mTextInput.setInputType(InputType.TYPE_CLASS_NUMBER);
112 mTextInput.setTransformationMethod(new PasswordTransformationMethod());
116 mTextInput.setText(prefill);
117 mTextInput.setSelection(mTextInput.getText().length(), mTextInput.getText().length());
120 mTextInput.setOnEditorActionListener(new TextView.OnEditorActionListener() {
145 inputMethodManager.showSoftInput(mTextInput, 0)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
PasswordInputWizardFragment.java 82 private EditText mTextInput;
96 mTextInput = (EditText) action.findViewById(R.id.text_input);
123 ViewGroup.LayoutParams params = mTextInput.getLayoutParams();
138 mTextInput.setTransformationMethod(new PasswordTransformationMethod());
140 mTextInput.setTransformationMethod(null);
146 mTextInput.setTransformationMethod(new PasswordTransformationMethod());
148 mTextInput.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS |
152 mTextInput.setText(prefill);
153 mTextInput.setSelection(mTextInput.getText().length(), mTextInput.getText().length())
    [all...]
TextInputWizardFragment.java 84 private EditText mTextInput;
97 mTextInput = (EditText) action.findViewById(R.id.text_input);
129 mTextInput.setTransformationMethod(new PasswordTransformationMethod());
131 mTextInput.setInputType(inputType);
134 mTextInput.setText(prefill);
135 mTextInput.setSelection(mTextInput.getText().length(), mTextInput.getText().length());
138 mTextInput.setOnEditorActionListener(new TextView.OnEditorActionListener() {
165 inputMethodManager.showSoftInput(mTextInput, 0)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingDialog.java 81 private EditText mTextInput;
282 mTextInput = (EditText) findViewById(R.id.text_input);
294 mTextInput.setInputType(InputType.TYPE_CLASS_NUMBER);
301 mTextInput.setInputType(InputType.TYPE_CLASS_TEXT);
312 mTextInput.setFilters(new InputFilter[] { new LengthFilter(maxLength) });
  /development/samples/ApiDemos/src/com/example/android/apis/os/
MmsMessagingDemo.java 79 private EditText mTextInput;
136 mTextInput = (EditText) findViewById(R.id.mms_text_input);
145 mTextInput.getText().toString());
215 mTextInput.setText("");
289 mTextInput.setText(getMessageText(retrieveConf));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ConfigurationSelector.java     [all...]

Completed in 829 milliseconds