I want to scroll up my layout when softinput keyboard is visible.I have define scrollview in my xml at proper place but when keyboard is visible it hides some part of layout like buttons. I have read on stackoveflow Link that scrollview not works when activity is FULL_SCREEN.If it is true then how can I scroll up my layout when softinput visible.
how to scroll up layout when keyboard visible in activity with FULL_SCREEN
4.2k Views Asked by Nitish Patel At
2
There are 2 best solutions below
1

you have to change your manifest file
in your activity tag
android:windowSoftInputMode="adjustPan" add this.
see this http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft
Use this custom relative layout to detect softkeyboard with in ur xml
Then implements RelativeLayoutThatDetectsSoftKeyboard.Listener to your Actiity class
Based on the Keyboard visibility move your layout to up and down using Layout params