2011-09-07 8 views

Odpowiedz

45

Zestaw ten w xml układ dla twojego EditText:

android:inputType="textNoSuggestions"

Lub zadzwoń setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS) w swojej działalności”

Jeśli trzeba wspierać API 4 i poniżej, należy android:inputType="textFilter"

+0

to działa idealnie. dzięki – Adem

5

Jeśli ustawienie:

android:inputType="textNoSuggestions" 

nadal nie działa (a pole tekstowe jest mała), szybkie obejście jest użycie:

android:inputType="textVisiblePassword" 
Powiązane problemy