Back to project page android_google_image_searcher.
The source code is released under:
GNU General Public License
If you think the Android project android_google_image_searcher listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.snambi.googleimagesearcher; //from ww w .ja v a 2 s .c o m import android.app.Activity; import android.view.inputmethod.InputMethodManager; public class AndroidUtils { public static void hideSoftKeyboard( Activity activity ){ InputMethodManager manager = (InputMethodManager) activity.getSystemService(Activity.INPUT_METHOD_SERVICE); manager.hideSoftInputFromWindow(activity.getCurrentFocus().getWindowToken(), 0); } }