I have an EditText that ultimately resides inside a ScrollView. I have implemented a comment function that will lead you to a new action, and automatically puts focus in the editing text so that the user can immediately start writing his comment.
Unfortunately, it does not quite scroll through the edittext in the form, as you can see in the screenshot below:
I would like to see something similar when EditText opens completely (see below). I already looked at android:WindowSoftInputMode
, and it seems that the default values should work ... and indeed, it works mainly because it scrolls, just not enough.
So what can I do to achieve the desired behavior? Thanks!
source share