I need to display the virtual keyboard when the application starts, but so far I\'ve failed.
I use this code in method \"OnCreate\"to display the virtual keyboard
I Found the solution:
txtPassword.postDelayed(new Runnable() { @Override public void run() { InputMethodManager keyboard = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); keyboard.showSoftInput(txtPassword, 0); } },200);
Thanks !!!