Hi All,
I want to disable the "selectability" of an EditText
I tried both following codes without any success (the EditText remains selectable if I make a long touch on the text)
Code 1 :
Dim jo As JavaObject = EditText1
' jo.RunMethod("setTextIsSelectable", Array As Object(False))
Code 2 :
Dim r As Reflector
r.Target = EditText1
r.RunMethod2("setTextIsSelectable",False,"java.lang.boolean")
Thanks for your help
I want to disable the "selectability" of an EditText
I tried both following codes without any success (the EditText remains selectable if I make a long touch on the text)
Code 1 :
Dim jo As JavaObject = EditText1
' jo.RunMethod("setTextIsSelectable", Array As Object(False))
Code 2 :
Dim r As Reflector
r.Target = EditText1
r.RunMethod2("setTextIsSelectable",False,"java.lang.boolean")
Thanks for your help