A Armoured Member Licensed User Longtime User Dec 10, 2012 #1 Hi, Is possible to have a non editable but scrollable EditText? If the answer is yes how? :sign0104:
margret Well-Known Member Licensed User Longtime User Dec 10, 2012 #2 Have you tried EditText.Enabled=False. I think it will still scroll. There are documented issues with disabled edittext in Android 2.2. Upvote 0
Have you tried EditText.Enabled=False. I think it will still scroll. There are documented issues with disabled edittext in Android 2.2.
mc73 Well-Known Member Licensed User Longtime User Dec 10, 2012 #3 Not sure, but disabling the view, wouldn't turn scrolling off? Haven't tried it though. Anyway, another try would be to set inputType to NONE. Upvote 0
Not sure, but disabling the view, wouldn't turn scrolling off? Haven't tried it though. Anyway, another try would be to set inputType to NONE.
A Armoured Member Licensed User Longtime User Dec 10, 2012 #4 Thanks margret and mc73. Is possible to jump at the end of a text inside an EditText? Upvote 0
mc73 Well-Known Member Licensed User Longtime User Dec 10, 2012 #5 Perhaps by setting the selectionStart property of your textBox to its very end. Upvote 0