Android soft keyboard resize layout
When the virtual keyboard opens, it resizes my layout. How can i made for put the keyboard on my layout? And what it doesn't re-size my layout? 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