Android 软键盘遮挡三种解决方案

Android 软键盘遮挡三种解决方案

方法1:
在activity中的onCreate 中setContextView之前写上这行代码:getWindow().setSoftInputmode(WindowManger.LayoutParams.SOFT_INPUT_ADJUST_PAN);
方法2:
在AndroidMiainFrist.xml 文件中的activity中加入android:windowSoftInputMode = “adjustPan”;
方法3:
keyboardStatsListener接口的实现

你可能感兴趣的:(Android 软键盘遮挡三种解决方案)