Custom EditText is not showing keyboard on focus

后端 未结 6 977
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-01 04:21

I am creating a custom EditText class because i need to set some custom fonts; However now when i click on the editText the android keyboard does not pop up anymore...

h

6条回答
  •  [愿得一人]
    2021-02-01 04:47

     editText.setOnTouchListener(new OnTouchListener() 
      {
        @Override
        public boolean onTouch(View v, MotionEvent event) 
         {
             editText.setFocusableInTouchMode(true);
             return false;
         }
      });
    

提交回复
热议问题