I have a problem on android lollipop, screen doesn't adjust size when the softkeyboard comes up.
This is my manifest intro example from one of the activity i made:
android:windowSoftInputMode="stateAlwaysHidden|adjustResize"
Is there something new that is added and we have to take into account for android 5.0 ? The scrollview works fine on android < 5.0.
the problem was that it didn't work with translucent status bar and i had to set
android:fitsSystemWindows="true"
in my main layout
For the guy's who still have this issue even with android:fitsSystemWindows="true"
in the ScrollView.
I found few ways to solve it:
fragment.xml
layout RelativeLayour and put android:fitsSystemWindows="true"
inside. ScrollView use as a child of RelativeLayour. <RelativeLayout android:fitsSystemWindows="true">
<ScrollView/>
</RelativeLayout>
Both options should be used with android:windowSoftInputMode="adjustResize"
and works on Android 5 with <item name="android:windowTranslucentStatus">true</item>
flag.
`
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With