如何防止关注活动开始

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

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

  • // Add following code in activity onCreate
            this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
    

    对于父级布局android:focusableInTouchMode="true"


    您可以像设置布局的属性

    android:descendantFocusability="beforeDescendants"
    android:focusableInTouchMode="true"
    
    链接地址: http://www.djcxy.com/p/24175.html

    上一篇: How to prevent focus on Activity start

    下一篇: Disable autofocus of EditText at Activity startup