在MvxFragment中关闭/隐藏Android软键盘

时间:2015-06-18 15:52:47

标签: android xamarin mvvmcross android-softkeyboard

我用xamarin + mvvmcross创建android应用程序。我的MvxFragment中有一个MvxAutoCompleteTextView。在MvxAutoCompleteTextView中写入并单击其他控件后,我想隐藏虚拟键盘。我用这个代码

public class MyFragment : MvxFragment 
{
    public override View OnCreateView(LayoutInflater inflater, ViewGroup container,  Bundle savedInstanceState)
    {

        base.OnCreateView(inflater, container, savedInstanceState);
        var view = this.BindingInflate(Resource.Layout.frMy, null);
        var autoComplete = view.FindViewById<MvxAutoCompleteTextView>(Resource.Id.acMy);
        InputMethodManager inputManager = (InputMethodManager)inflater.Context.GetSystemService(Context.InputMethodService);
        inputManager.HideSoftInputFromWindow(autoComplete.WindowToken, HideSoftInputFlags.None);
        return view;
    }
}

但这不起作用。如何隐藏键盘?

4 个答案:

答案 0 :(得分:6)

您可以隐藏软键盘,将焦点放在不是“键盘启动器”控件的位置,例如,自动完成控件的父容器。

parentContainer = FindViewById<LinearLayout>(Resource.Id.parentContainer);
parentContainer.RequestFocus();

假设您的父容器是LinearLayout,您应该允许它使用这两个属性获得焦点:

<LinearLayout
    android:id="@+id/parentContainer"
    android:focusable="true"
    android:focusableInTouchMode="true">

答案 1 :(得分:6)

我从这里得到了答案:https://stackoverflow.com/a/28939113/4664754

这是C#版本(测试和工作):

public override bool DispatchTouchEvent(MotionEvent ev)
{
    if (ev.Action == MotionEventActions.Down)
    {
        View v = CurrentFocus;
        if (v.GetType() == typeof(EditText))
        {
            Rect outRect = new Rect();
            v.GetGlobalVisibleRect(outRect);
            if (!outRect.Contains((int)ev.RawX, (int)ev.RawY))
            {
                v.ClearFocus();
                InputMethodManager imm = (InputMethodManager)this.GetSystemService(Context.InputMethodService);
                imm.HideSoftInputFromWindow(v.WindowToken, 0);
            }
        }
    }
    return base.DispatchTouchEvent(ev);
}

如果您点击任何不是EditText的内容,这段代码将隐藏软键盘。 您只需将其粘贴到您的活动类中(例如您的loginActivity)

答案 2 :(得分:3)

试试这个:

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

0中的值HideSoftInputFromWindow是const Android.Views.InputMethods.HideSoftInputFlags.None,因此您可以使用等效语法:

InputMethodManager imm = (InputMethodManager)GetSystemService(Context.InputMethodService);
imm.HideSoftInputFromWindow(autoComplete.WindowToken, Android.Views.InputMethods.HideSoftInputFlags.None);

答案 3 :(得分:2)

试试我的功能:

public static void Close_AndroidKeyboard(Activity context){
    InputMethodManager inputManager = (InputMethodManager) context.getSystemService(
            Context.INPUT_METHOD_SERVICE);
    inputManager.hideSoftInputFromWindow(context.getCurrentFocus().getWindowToken(),
            InputMethodManager.HIDE_NOT_ALWAYS);
}

很抱歉,但是我和Android工作室合作,告诉我,如果我帮助你并且编程好!