0%

Android 让EditText默认不获取软键盘

在Android开发中,会遇到这种情况,当页面中存在EditText时,默认会把软键盘给调出来,而我们并不想让软键盘弹出。

解决方案:

在EditText的父控件中设置如下两个属性即可:

1
2
android:focusable="true"
android:focusableInTouchMode="true"

Welcome to my other publishing channels