I want a Multiline
EditText
to allow imeOptions="actionNext"
.
This works, but only allows single line input
<EditText>
...
android:inputType="textCapSentences|textAutoCorrect"
android:imeOptions="actionNext"
...
</EditText>
This changes the imeOption
to an enter key.
<EditText>
...
android:inputType="textCapSentences|textAutoCorrect|textMultiline"
android:imeOptions="actionNext" <!-- Why is this code skipped? -->
...
</EditText>
The Google Keep and Gmail apps do this somehow, so don't tell me it isn't possible.