我有一个带有一堆EditTexts和一个按钮的Activity。当用户单击该按钮时,基于EditTexts输入的答案将显示在按钮的标题中。在buttonclick处理程序中,我将焦点更改为按钮,光标从EditText具有焦点的任何内容中消失,但软键盘仍保留在屏幕上。如何强制软键盘消失?
EditText1.ClearFocus();
EditText2.ClearFocus();
EditText3.ClearFocus();
calc_btn.Focusable = true;
calc_btn.RequestFocus();
我已经看到了几个关于如何在Java中执行此操作的答案,但我无法弄清楚如何将它们转换为C#。
感谢您的任何建议。
答案 0 :(得分:3)
您可以这样做:
var inputManager = (InputMethodManager)GetSystemService(InputMethodService);
inputManager.HideSoftInputFromWindow(editText.WindowToken, HideSoftInputFlags.None);
答案 1 :(得分:2)
Jon O上面的答案是完美的。这就是你如何使用它。
Window.SetSoftInputMode(SoftInput.StateHidden);
答案 2 :(得分:2)
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
SetContentView (Resource.Layout.Main);
Button button = FindViewById<Button> (Resource.Id.button1);
button.Click+= onClick;
EditText es=FindViewById<EditText>(Resource.Id.editText1);
es.EditorAction += (object sender, TextView.EditorActionEventArgs e) =>
{
if ( e.ActionId == Android.Views.InputMethods.ImeAction.Done )
{
var editText = sender as EditText;
var inputManager = GetSystemService(InputMethodService) as InputMethodManager;
inputManager.HideSoftInputFromWindow(editText.WindowToken, 0);
}
};
EditText es1=FindViewById<EditText>(Resource.Id.editText2);
es1.EditorAction += (object sender, TextView.EditorActionEventArgs e) =>
{
if ( e.ActionId == Android.Views.InputMethods.ImeAction.Done )
{
var editText = sender as EditText;
var inputManager = GetSystemService(InputMethodService) as InputMethodManager;
inputManager.HideSoftInputFromWindow(editText.WindowToken, 0);
}
};
}
我在上面的代码中使用了给定的方法。我不想为两个文本框显示软键盘。它不工作,我写的不正确吗?
答案 3 :(得分:1)
this对您有用吗?
这里似乎有一种方法:
public override void HideSoftInput (int flags, Android.OS.ResultReceiver resultReceiver)
答案 4 :(得分:1)
这是一个完全有效的解决方案:
using Android.Views.InputMethods;
yourEditTextObject.EditorAction += (object sender, TextView.EditorActionEventArgs e) =>
{
if ( e.ActionId == Android.Views.InputMethods.ImeAction.Done )
{
var editText = sender as EditText;
var inputManager = GetSystemService(InputMethodService) as InputMethodManager;
inputManager.HideSoftInputFromWindow(editText.WindowToken, 0);
}
};