Reputation: 190
This happens when i use
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
And my layout looks like this when i use getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
I already have ScrollView
inside layout but I don't know why it behaves like this:
Upvotes: 0
Views: 222
Reputation: 113
just try and add android:windowSoftInputMode="adjustResize" to the particular activity in android manifest file
Upvotes: 1