Fatal crash: Focus search returned a view that wasn't able to take focus

后端 未结 6 1945
一向
一向 2020-12-11 00:03

My application keeps crashing when I type something in a EditText, but this does not happen always only in some cases. I am running my app on a Samsung Galaxy Tab 2 10.1 WiF

6条回答
  •  天涯浪人
    2020-12-11 00:47

    I had this problem and fixed it like this:

    public void setEditable(boolean flag) {
        mEditText.setFocusableInTouchMode(flag);
        mEditText.setFocusable(flag);
        mEditText.setClickable(flag);
    }
    

提交回复
热议问题