Guest User

Untitled

a guest
Aug 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. Ignore Android soft keyboard for layout purposes
  2. <activity android:windowSoftInputMode="adjustPan">
  3.  
  4. InputMethodManager InputManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
  5. InputManager.hideSoftInputFromWindow(your widget object.getWindowToken(), 0);
Add Comment
Please, Sign In to add comment