Lines Matching defs:editText
36 import android.widget.EditText;
196 //get the edittext component within the number field
197 EditText editText = getEditText();
202 if (editText != null) {
211 editText.setText(BidiFormatter.getInstance().unicodeWrap(
213 editText.setMovementMethod(ArrowKeyMovementMethod.getInstance());
214 editText.setKeyListener(DialerKeyListener.getInstance());
215 editText.setOnFocusChangeListener(mDialogFocusChangeListener);
233 * This method attaches the EditText to the container specific to this
237 protected void onAddEditTextToDialogView(View dialogView, EditText editText) {
243 // add the edittext to the container.
245 container.addView(editText, ViewGroup.LayoutParams.MATCH_PARENT,
254 // displayed, since there is no need to hide the edittext
273 //set the on focus change listener to be assigned to the Dialog's edittext field.
303 EditText editText = getEditText();
304 if (editText != null) {
305 editText.setText(pickedValue);