G Gmankelow Member Licensed User Longtime User Apr 21, 2011 #1 Is there a way to prevent the auto suggestions from appearing when a user is entering text into a Edit Text View?
Is there a way to prevent the auto suggestions from appearing when a user is entering text into a Edit Text View?
Erel B4X founder Staff member Licensed User Longtime User Apr 22, 2011 #2 Please try to set the EditText input type to INPUT_TYPE_NO_SUGGESTION. B4X: et.InputType = Bit.Or(et.InputType, 524288) 'et is the EditText Note that it will only work from Android 2.0 and above. Upvote 0
Please try to set the EditText input type to INPUT_TYPE_NO_SUGGESTION. B4X: et.InputType = Bit.Or(et.InputType, 524288) 'et is the EditText Note that it will only work from Android 2.0 and above.
G Gmankelow Member Licensed User Longtime User Apr 23, 2011 #3 Great thanks that worked, however i just used et.InputType=524288 using the Bit.or prevented the keyboard from coming up completely. Upvote 0
Great thanks that worked, however i just used et.InputType=524288 using the Bit.or prevented the keyboard from coming up completely.