Keyboard hiding EditTexts in Fragments

后端 未结 9 831
长情又很酷
长情又很酷 2020-12-25 13:59

edit: I need to use the keyboard, but it hides my EditText, I need it to scroll so the keyboard is not hiding it.

I am using a Samsun

9条回答
  •  情深已故
    2020-12-25 14:23

    Before show your Snackbar widget hide the keyboard like this,

    public void showSnackBar(){ 
    InputMethodManager manager = (InputMethodManager)getActivity().getSystemService(Activity.INPUT_METHOD_SERVICE);
    manager.hideSoftInputFromWindow(getView().getWindowToken(),0); 
    Snackbar snackbar = Snackbar.make(getView(), "Some message!", Snackbar.LENGTH_INDEFINITE).show(); 
    }
    

提交回复
热议问题