This code segment let you to prevent auto popping keyboard. If you’re using editText in your layout, auto popping keyboard would you really angry. Therefore, get rid of it :)
// Prevent to auto popping keyboard this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
You should use this code at your activity’s @OnCreate method.If you have a question, ask me :)