Home | History | Annotate | Download | only in phone

Lines Matching refs:editText

34 import android.widget.EditText;
194 //get the edittext component within the number field
195 EditText editText = getEditText();
200 if (editText != null) {
209 editText.setText(mPhoneNumber);
210 editText.setMovementMethod(ArrowKeyMovementMethod.getInstance());
211 editText.setKeyListener(DialerKeyListener.getInstance());
212 editText.setOnFocusChangeListener(mDialogFocusChangeListener);
230 * This method attaches the EditText to the container specific to this
234 protected void onAddEditTextToDialogView(View dialogView, EditText editText) {
240 // add the edittext to the container.
242 container.addView(editText, ViewGroup.LayoutParams.MATCH_PARENT,
251 // displayed, since there is no need to hide the edittext
270 //set the on focus change listener to be assigned to the Dialog's edittext field.
300 EditText editText = getEditText();
301 if (editText != null) {
302 editText.setText(pickedValue);