Qtdesigner
Qtdesigner

Reputation: 135

Hiding suggestion giving by keyboard while typing

Hello How to hide spell suggestion of keyboard while typing in a edittext. Please help me. Thanks.

Upvotes: 1

Views: 367

Answers (2)

Timur Bilalov
Timur Bilalov

Reputation: 3702

You can use textNoSuggestions with your android:inputType attribute on the EditText to try hide the suggestions.

Upvotes: 1

SBK
SBK

Reputation: 1585

try this

     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:singleLine="true"
     android:hint="Enter city "
        />

Upvotes: 0

Related Questions