Is it possible to use more then 1 imeOptions
in Android xml ? for the same text field
.
e.g.
<EditText
android:id="@+id/mywriting"
android:imeOptions="actionDone"
android:imeOptions="autoText"/>
Right now it is giving me an error, saying 1 imeOptions has already been used
and I can't use any more
ERRATUM
My bad. It is the
inputType
not theimeOptions
that can be combined.