Im looking for a way to disable autocorrection in EditText (and optionally to live autosuggestions). Current code:
<EditText
android:id="@+id/text_message_edit_text"
android:layout_width="240dp"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textCapSentences|textMultiLine|textNoSuggestions|textFilter"
android:textSize="20sp" />
I have tried this solution adding textVisiblePassword
attribute. It helped me, but after this button for language switch become disabled.