gpt4 book ai didi

c# - 单击外部 Edittext 后如何在 Xamarin Android 中隐藏键盘

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:12:17 27 4
gpt4 key购买 nike

我正在研究 Xamarin(Android)。现在我想在点击 Edit Text 外部后隐藏键盘。

提前致谢。

public class MainActivity : Activity
{


protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);

// Set our view from the "main" layout resource
RequestWindowFeature(WindowFeatures.NoTitle);


SetContentView(Resource.Layout.Main);

EditText Etusername= FindViewById<EditText>(Resource.Id.EtUname);
Etusername.SetHintTextColor(Color.Gray);

InputMethodManager imm = (InputMethodManager)GetSystemService(Context.InputMethodService);
imm.HideSoftInputFromWindow(Etusername.WindowToken, 0);
}

最佳答案

使用此代码隐藏键盘

public override bool OnTouchEvent(MotionEvent e)
{
InputMethodManager imm = (InputMethodManager)GetSystemService(Context.InputMethodService);
imm.HideSoftInputFromWindow(Etusername.WindowToken, 0);
return base.OnTouchEvent(e);
}

并确保你必须添加这个库:

using Android.Views.InputMethods;

关于c# - 单击外部 Edittext 后如何在 Xamarin Android 中隐藏键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39636698/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com