I've reviewed many posts that all say that suggestions on Edit Texts can be suppressed. I've tried all the examples and none work.
My tablet is Ice Cream Sandwich. Is this a problem?
If not, any suggestion is greatly appreciated. I was able to get password obfuscation to work, but I need for the user to be able to see what he is typing.
The following are two examples of what I have tried
Thanks,
Rusty
My tablet is Ice Cream Sandwich. Is this a problem?
If not, any suggestion is greatly appreciated. I was able to get password obfuscation to work, but I need for the user to be able to see what he is typing.
The following are two examples of what I have tried
B4X:
inputText.InputType = Bit.Or(InputText.InputType, 524288) 'InputText is the EditText
inputText.InputType = Bit.Or(inputText.INPUT_TYPE_TEXT, 524288)
Rusty