views:

397

answers:

1

Hello all, I am new to android development.

I am creating an application in which when app launches the edittextfield getfocus automatically and the keyboard pop-up.I want to hide the keyboard by default and show when edittextField get focus.I have tried this method but it's not working.

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);

Thanks Niranjan Khandelwal

A: 

Change your manifest file:

pput it there: (on your especific activity)

android:windowSoftInputMode="stateHidden"

Franklin Hirata