Whenever I click in the EditText the Android keyboard popup window appears, but I don\'t want the keyboard to pop up.
EditText
I want to permanently hide the and
Try to add this in yout onCreate() method.
onCreate()
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
Not tested but It Should work!!