Lines Matching refs:editText
197 EditText editText = getEditText(); in onBindDialogView() local
202 if (editText != null) { in onBindDialogView()
211 editText.setText(BidiFormatter.getInstance().unicodeWrap( in onBindDialogView()
213 editText.setMovementMethod(ArrowKeyMovementMethod.getInstance()); in onBindDialogView()
214 editText.setKeyListener(DialerKeyListener.getInstance()); in onBindDialogView()
215 editText.setOnFocusChangeListener(mDialogFocusChangeListener); in onBindDialogView()
237 protected void onAddEditTextToDialogView(View dialogView, EditText editText) { in onAddEditTextToDialogView() argument
245 container.addView(editText, ViewGroup.LayoutParams.MATCH_PARENT, in onAddEditTextToDialogView()
303 EditText editText = getEditText(); in onPickActivityResult() local
304 if (editText != null) { in onPickActivityResult()
305 editText.setText(pickedValue); in onPickActivityResult()