Edytuj tekst bez autokorekty

Chcę EditText bez autokorekcji. Ustawiłem typ wejściowy textNoSuggestions, jak pokazano:

 <EditText
    android:id="@+id/txtTarga"
    android:layout_width="150dp"
    android:layout_height="wrap_content"
    android:ems="10"
    android:hint="Targa"
    android:inputType="textNoSuggestions|textCapCharacters" >

Flaga wielkiej litery działa, ale nadal jest autokorekty.

Jak mogę to wyłączyć?

questionAnswers(4)

yourAnswerToTheQuestion