1. Add the attribute below to your specific EditText in its layout-xml:
android:focusable="false" android:focusableInTouchMode="true"
2. Then in Activity add:
mEditText.setOnTouchListener(new View.OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { v.setFocusable(true); return false; } });
Hope this helps.
source share