Tell android that my layout can be resized instead of cropped
How can I 开发者_开发技巧tell android to not crop my layout when displaying the on-screen keyboard but to instead resize it?
You need to add adjustResize
to your android:windowSoftInputMode
attribute on each <activity>
definition in your AndroidManifest.xml.
Check here for more information.
精彩评论