Skip to content Skip to sidebar Skip to footer

Android Edittext Text Entry Causing Scroll

This is a similar problem to what I posted earlier - but different. I have a HorizontalScrollView which contains 3 'pages'. When my app starts up, I tell the scrollview to scroll o

Solution 1:

try this in the EditText

mEditText.setGravity( Gravity.CENTER ); 

remove it

Solution 2:

I found my solution - override scrollTo() and do absolutely nothing.

Post a Comment for "Android Edittext Text Entry Causing Scroll"