Android soft keyboard resize layout

无人久伴 提交于 2019-11-28 11:55:37

You can use manifest flags to configure the effect of the virtual keyboard. See http://developer.android.com/guide/topics/manifest/activity-element.html#wsoft

Ashutosh Srivastava

Android soft keyboard resize layout

<activity android:name=".activity.SignUpActivity"
    android:screenOrientation="portrait"
    android:theme="@style/AppTheme.NoActionBar"
    android:windowSoftInputMode="adjustResize" />

It's Working for me try it.

use only this code:

    <application
    android:windowSoftInputMode="adjustPan"
    </application>

used in manifest-application tag for all application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!