EditText view on v4.0.1

Lon

Member
Licensed User
Longtime User
Just tried my program on the Nexus. I have three EditText (input type: None, Enabled: False) views filled with text that exceeds the EditText height. On all the other devices I've tested on I can just slide the text up and down to view it all. With the Nexus the text will not scroll. Does anyone else have this problem? Is there anything I can do to work around that?
If I change the views to Enabled: True, it will scroll but then the text becomes editable.
 
Last edited:

Lon

Member
Licensed User
Longtime User
Thanks. I applied this to each of my EditText views and it works great now!

B4X:
obj1.RunMethod2("setFocusable", "False", "java.lang.boolean")
 
Upvote 0
Top