In continuation of the answer given in Android setError("error") not working in Textview After applying the solution i.e. changing textview to focusable, A keyboard gets pop-up when that textview is clicked. How to hide that.
P.S. I tried onFocusChangeListener and onTouchListener
I want to know where to call this hide keyboard method as I tried this but it's not solving the issue;
    mEndTimeView.setOnClickListener(v -> {
        InputMethodManager imm = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);
        if(ViewUtils.isKeyboardShown(mEndTimeView.getRootView())){
            imm.hideSoftInputFromWindow(mEndTimeView.getWindowToken(), 0);
        }
        showEndTimePicker();
    });
 
     
     
    