I am trying to have an EditText with the following characteristics when editing with a soft key. I ready the documentation, searched here, play with the parameters but could not find a working configuration.

  1. The EditView view on the screen has height for a few lines (e.g. 3-4).
  2. The content text is a single line (that is, no line breaks).
  3. If the content text is longer than the view's width it should wrap to next line
  4. The Enter key of the soft key shows the Done action label.

I could achieve {1,2,3} and {1,2,4} but not {1,2,3,4}. My rational is that since the content is a single line (no line breaks) the Enter key is not used and thus should be able to be changed to the Done label.

My setup code looks like this

editText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_SENTENCES | InputType.TYPE_TEXT_FLAG_IME_MULTI_LINE);
editText.setHorizontallyScrolling(false);
editText.setSingleLine(false);
// This does not work. Soft keyboard has Enter action.
editText.setImeOptions(EditorInfo.IME_ACTION_DONE);

Is it possible? Any suggestion?

Thanks.

link|improve this question

50% accept rate
Can anybody at least confirm that this cannot be done? – user1076637 Jan 20 at 8:03
Line wrapping outlined in the answer to [this question][1]. [1]: stackoverflow.com/questions/3276380/… – A T Jan 21 at 0:13
Thanks A T. Yes, this does wrapping but how to I get it to work with required #4 above? – user1076637 Jan 31 at 2:20
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.