Keyboard not shown when i click on edittextview in android?

后端 未结 8 2425
灰色年华
灰色年华 2020-11-27 23:03

When i click on the edittextview then some times keyboard shown or some times keyboard are not shown.

In android 2.1 it show the keyboard when i click on the edittex

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-27 23:14

    I didn't want to EditText lose a focus using editText.clearFocus(). Came up to this solution.

    @Override
    public void onResume() {
        super.onResume();
    
        if (Build.VERSION.SDK_INT < 11) {
            editText.clearFocus();
            editText.requestFocus();
        }
    }
    

提交回复
热议问题