Log("old:"&EditText1.InputType)
' remember the old input-type
Dim remark As Int = EditText1.InputType
EditText1.InputType = Bit.OR(EditText1.InputType, 524288)
Log("no suggestion"&EditText1.InputType)
'
' Do whatever you need to do without suggestions...
'
' restore the old inputtype to put on suggestions again
EditText1.InputType = remark
Log("after restoring:"&EditText1.InputType)