美文网首页
EditText 总是被软键盘遮挡

EditText 总是被软键盘遮挡

作者: Lost_Robot | 来源:发表于2019-12-26 14:07 被阅读0次

1.修改Manifest文件下的Activity配置

            android:configChanges="keyboard"
            android:screenOrientation="portrait"
            android:theme="@style/MyApplicationTheme.NoActionBar"
            android:windowSoftInputMode="stateHidden|adjustResize"

切记:android:configChanges="keyboard",有的文章让设置为:keyboardHidden,结果就是每次都会把输入框遮挡住!

2.代码设置

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

相关文章

网友评论

      本文标题:EditText 总是被软键盘遮挡

      本文链接:https://www.haomeiwen.com/subject/emykoctx.html