2017-03-17 81 views
-1

這是我的代碼來說明鍵盤:如何softkeyboard隱藏xamarin的Android編程

AppData.SoftKeyBoard +=() => 
     { 
      InputMethodManager imm = (InputMethodManager)GetSystemService(Context.InputMethodService); 
      imm.ToggleSoftInput(ShowFlags.Forced, HideSoftInputFlags.ImplicitOnly); 
     }; 

我需要隱藏softkeyboard的方法。

回答

0

在這裏,你去。這是Visual Studio的代碼。

// Hide keyboard 
var inputManager = (InputMethodManager)GetSystemService(InputMethodService); 
inputManager.HideSoftInputFromWindow(btnSignIn.WindowToken, HideSoftInputFlags.None);