Prevent Buttons From Hiding Soft Keyboard On Android

前端 未结 3 1774
广开言路
广开言路 2020-12-11 03:55

I have a WebView and some buttons in my layout. There is a large tag in my WebView. This app is used to edit text files. The buttons are used to effect the textarea inside

3条回答
  •  独厮守ぢ
    2020-12-11 04:29

    Xamarin Android (Alternative):

    InputMethodManager inputManager = (InputMethodManager)GetSystemService(Context.InputMethodService); 
    inputManager.ToggleSoftInput (ShowFlags.Forced, HideSoftInputFlags.ImplicitOnly);
    

提交回复
热议问题