Reputation: 57
A short question - how do I make the scroll view actually stay at its position (bottom), when I click on an EditText type of field? Right now whenever I click on it, the scroll view goes straight to the top of screen as if it wanted to appear above the keyboard.
See images for the exact situation.
Normal view:
Messed up view, the scroll view goes to top instead of staying at the bottom:
Upvotes: 0
Views: 457
Reputation: 2113
android:windowSoftInputMode="stateHidden|adjustPan"
set this to activity in manifest.xml
Upvotes: 1