在Activity启动时禁用EditText的自动对焦

这个问题在这里已经有了答案:

  • 停止EditText在活动启动时获得焦点46个答案

  • 答:

    对于活动:将下面的代码放到你的onCreate()方法中

    。this.getWindow()setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

    对于片段:将下面的代码放到你的onCreateView()方法中

    getActivity()getWindow()setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN)。;

    链接地址: http://www.djcxy.com/p/24173.html

    上一篇: Disable autofocus of EditText at Activity startup

    下一篇: focus of EditText in android