[android-developers] Setting two setImeOptions() for a EditText

2010-05-28 Thread Nithin
Hi, I have a editText. In this, I want to set two ImeOptions as textInput.setImeOptions(EditorInfo.IME_FLAG_NO_EXTRACT_UI); textInput.setImeOptions(EditorInfo.IME_ACTION_DONE); But I can't do this, as it will overwrite and only the last one will take. How can I do these two actions. Nithin --

Re: [android-developers] Setting two setImeOptions() for a EditText

2010-05-28 Thread Carlos Silva
On Fri, May 28, 2010 at 14:41, Nithin nithin.war...@gmail.com wrote: Hi, I have a editText. In this, I want to set two ImeOptions as textInput.setImeOptions(EditorInfo.IME_FLAG_NO_EXTRACT_UI); textInput.setImeOptions(EditorInfo.IME_ACTION_DONE);