Resize app how keyboard does it

Hello everyone, I was was wondering which Java code is responsible for the app resize like what happens with the ionic keyboard. The whole app including tabs is getting pushed to above the keyboard and I need to implement it elsewhere.

1 Like

08

I use this method, search on this file this line.

<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">

change this part:

android:windowSoftInputMode="adjustPan"

for me its works perfectly, i know that there are not this problem on IOS, its work on version all version of ionic 1-4

6 Likes

this still works good , ty