繁体   English   中英

Android:EditText会自动打开键盘,如何停止?

[英]Android: EditText turns on keyboard automatically, how to stop?

我在下面定义的ListView有一个简单的EditText

应用程序运行时,会选择EditText并显示键盘。

我不希望这种情况发生。 我不希望它被选中或默认情况下出现键盘。

<EditText
    android:id="@+id/search_box"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:hint="type to search titles"
    android:inputType="text"
    android:maxLines="1"
    android:capitalize="none"
    android:linksClickable="false"
    android:autoLink="none"
    android:autoText="true"
    android:singleLine="true" />
<ListView
    android:id="@+id/DetailsListView"
    android:layout_width="fill_parent"
    android:layout_height="0dip"
    android:layout_weight="1"
    android:background="@color/transparent"
    android:cacheColorHint="@color/transparent"
    android:listSelector="@drawable/list_selector"
    android:fastScrollEnabled="true" />

首先标签是monodroid所以它在C#上,所以接受的答案是正确的。

但这不是我认为作者想要的......这个技巧只是隐藏了键盘,但editText仍然有焦点。

要在java和c#中执行此操作,必须将其放在根布局中:

android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"

例如 :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/white"
    android:descendantFocusability="beforeDescendants"
    android:focusableInTouchMode="true"
              >
....
</LinearLayout>

我发现这是解决方案:

Window.SetSoftInputMode (SoftInput.StateAlwaysHidden);

注意:这是用于Android的C#而不是Java

在onCreate中添加它

    getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

在布局中尝试这个

<EditText
                    android:id="@+id/myid2"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@id/myid1"
                    android:clickable="true"
                    android:cursorVisible="false"
                    android:focusable="false"
                    android:hint="@string/hint"
                    android:singleLine="true"
                    android:textColor="@color/black"
                    android:textSize="15dp" />

这在你的代码中

    myEditText.setOnTouchListener(new OnTouchListener() {

        public boolean onTouch(View v, MotionEvent event) {

            if (event.getAction() == MotionEvent.ACTION_UP) {
                //do tasks
            }
            return false;
        }
    });

我不知道它是否有用。 我甚至不知道它做了什么。 但它为我解决了类似的问题。 如果我浪费你的时间,我会

我找到了我的解决方案,你可以尝试这个,它完美无缺。

xml(我在defualt中将editText的focusableInTouchMode设置为false):

       <EditText ... android:focusableInTouchMode="false" .../>

我在触摸java后改变了focusableInTouchMode:

        yourEditText.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View view, MotionEvent motionEvent) {
            yourEditText.setFocusableInTouchMode(true);
            return false;
        }
    });

android:windowSoftInputMode =“stateHidden”对我不起作用。 也没有弄乱元素焦点和其他技术(甚至将其设置为enabled = false显示键盘)。

我的解决方案:创建一个hideKeyboard函数:

private void hideKeyboard() {
        InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
        imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
    }

每当托管文本字段的UI变得可见时触发它:

对话:

 dialog.setOnShowListener(new DialogInterface.OnShowListener() {
        @Override
        public void onShow(DialogInterface dialog) {
            hideKeyboard();
        }

对于小部件:

@Override
public void setVisibility(int visibility) {
    super.setVisibility(visibility);
    hideKeyBoard();
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM