EditText

roarnold

Active Member
Licensed User
Longtime User
Has the "INPUT_TYPE_NONE" for the keyboard been resolved? I saw a work around using phone but that doesn't seem to work either.

Thanks,
R
 

roarnold

Active Member
Licensed User
Longtime User
Steve,

I was trying to keep the keyboard from popping up and the guide and forum states "INPUT_TYPE_NONE as Int" which I tried. I did find a work around for it but it doesn't seem to work either yet.

B4X:
                EditText1.Initialize("EditText")
                EditText1.Hint = "N/A"
      EditText1.Tag = "1"
      EditText1.TextSize = 10
      EditText1.INPUT_TYPE_NONE
                HSV.Panel.AddView(EditText1, 150dip, 60dip, 100dip, 30dip)

[/Code


ERROR:

Parsing code.                           0.02
Compiling code.                         Error
Error compiling program.
Error description: '=' expected.
Occurred on line: 117
EditText1.INPUT_TYPE_NONE
Word: input_type_none



Thanks,
R
 
Upvote 0
Top