Differences between textMultiLine and textLongMessage

¿In which case should I use which one?

The Google documentation says:

textMultiLine It can be combined with text and its variants allowing to use several lines of text in a field. If this flag is not set, the text field will be limited to one line.

textLongMessage The text that is the content of the long message.

But I want to use EditText, which will be multi-line and with the contents of a long message.

inputType Google Documentation

+5
source share
1 answer

You can use multiple tags, for example.

android:inputType="textMultiLine | textLongMessage"
+1
source

All Articles