提供两个方法:
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" //这样键盘会覆盖屏幕
本文标题:Android EditText在底部解决软键盘遮挡输入框
本文链接:https://www.haomeiwen.com/subject/jdqevctx.html
网友评论