R roarnold Active Member Licensed User Longtime User Apr 14, 2013 #1 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
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
stevel05 Expert Licensed User Longtime User Apr 15, 2013 #2 What problem are you referring to? ------------------- Sent via Tapatalk Upvote 0
R roarnold Active Member Licensed User Longtime User Apr 15, 2013 #3 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
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
NJDude Expert Licensed User Longtime User Apr 15, 2013 #4 It should be: B4X: EditText1.InputType = EditText1.INPUT_TYPE_NONE Upvote 0
R roarnold Active Member Licensed User Longtime User Apr 15, 2013 #5 Thanks NJD. I looked everywhere on how to set it up. Thanks for the help. Again. Ron Upvote 0