Wednesday, October 25, 2017

(Android) Proven Code To Hide Soft Keyboard

Programmatically:
this.getWindow().setSoftInputMode(     WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
XML:
        android:focusable="true"         android:focusableInTouchMode="true"         android:descendantFocusability="beforeDescendants" 
Programatically 2:
    public void hideSoftKeyboard(){         if(getActivity().getCurrentFocus() != null){             InputMethodManager inputMethodManager = (InputMethodManager) getActivity().getSystemService(Context.INPUT_METHOD_SERVICE);             inputMethodManager.hideSoftInputFromWindow(getActivity().getCurrentFocus().getWindowToken(), 0);         }     } 


Sumber http://aldokelvianto.blogspot.com

No comments:

Post a Comment

Laptop Graphic Terbaik Untuk Desain Grafis 2014

Mereview Laptop Desain Grafis tahun 2014 OPOSIP - Ketika saya bekerja dari rumah saya mempunyai sebuah PC yang didedikasikan yang sang...