Showing posts with label Soft Keyboard. Show all posts
Showing posts with label Soft Keyboard. Show all posts

Saturday, 26 December 2015

Hide Soft Keyboard when activity closed

16:28:00 Posted by Kumanan


@Overridepublic void onPause() {
    super.onPause();    InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);    imm.hideSoftInputFromWindow(nameEdt.getWindowToken(), 0);    
}