Searched refs:mSubjectTextEditor (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Mms/tests/src/com/android/mms/ui/
H A DLongThreadTest.java56 private EditText mSubjectTextEditor; // Text editor for MMS subject field in class:LongThreadTest
82 mSubjectTextEditor = (EditText)mActivity.findViewById(R.id.subject);
394 mSubjectTextEditor.setText(generateMessage());
/packages/apps/Mms/src/com/android/mms/ui/
H A DComposeMessageActivity.java271 private EditText mSubjectTextEditor; // Text editor for MMS subject field in class:ComposeMessageActivity
522 if ((keyCode == KeyEvent.KEYCODE_DEL) && (mSubjectTextEditor.length() == 0)) {
1892 if (mSubjectTextEditor == null) {
1898 mSubjectTextEditor = (EditText)findViewById(R.id.subject);
1899 mSubjectTextEditor.setFilters(new InputFilter[] {
1903 mSubjectTextEditor.setOnKeyListener(show ? mSubjectKeyListener : null);
1906 mSubjectTextEditor.addTextChangedListener(mSubjectEditorWatcher);
1908 mSubjectTextEditor.removeTextChangedListener(mSubjectEditorWatcher);
1911 mSubjectTextEditor.setText(mWorkingMessage.getSubject());
1912 mSubjectTextEditor
[all...]

Completed in 542 milliseconds