提供两个方法:
1:在你的activity中的onCreate中setContentView之前写上这个代码
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
2:在项目的AndroidManifest.xml文件中界面对应的里加入:
android:windowSoftInputMode="adjustPan" //这样键盘会覆盖屏幕
提供两个方法:
1:在你的activity中的onCreate中setContentView之前写上这个代码
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
2:在项目的AndroidManifest.xml文件中界面对应的里加入:
android:windowSoftInputMode="adjustPan" //这样键盘会覆盖屏幕