简体   繁体   English

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

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

I have a simple EditText over a ListView defined below. 我在下面定义的ListView有一个简单的EditText

When the app runs, the EditText is selected and the keyboard appears. 应用程序运行时,会选择EditText并显示键盘。

I don't want that to happen. 我不希望这种情况发生。 I don't want it selected or the keyboard to appear by default. 我不希望它被选中或默认情况下出现键盘。

<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" />

First the tag is monodroid so it's on C# so the accepted answer is correct. 首先标签是monodroid所以它在C#上,所以接受的答案是正确的。

But is not what I think the author wants... this trick just hide the keyboard but the editText still have the focus. 但这不是我认为作者想要的......这个技巧只是隐藏了键盘,但editText仍然有焦点。

To do this both in java and c#, you have to put this in your root Layout : 要在java和c#中执行此操作,必须将其放在根布局中:

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

For example : 例如 :

<?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>

I found this to be the solution: 我发现这是解决方案:

Window.SetSoftInputMode (SoftInput.StateAlwaysHidden);

Note: This is in C# not Java for Android 注意:这是用于Android的C#而不是Java

在onCreate中添加它

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

try this in layout 在布局中尝试这个

<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" />

and this in your code 这在你的代码中

    myEditText.setOnTouchListener(new OnTouchListener() {

        public boolean onTouch(View v, MotionEvent event) {

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

i dont know if it is of any use. 我不知道它是否有用。 i dont even know what it does. 我甚至不知道它做了什么。 but it solved a similar problem for me. 但它为我解决了类似的问题。 sry if i wasted your time 如果我浪费你的时间,我会

i found my solution , you can try this one and it works perfect. 我找到了我的解决方案,你可以尝试这个,它完美无缺。

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

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

and i changed focusableInTouchMode after touching in java : 我在触摸java后改变了focusableInTouchMode:

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

android:windowSoftInputMode="stateHidden" did not work for me. android:windowSoftInputMode =“stateHidden”对我不起作用。 Neither did messing around with the elements focus and other techniques (even setting it as enabled=false shows the keyboard). 也没有弄乱元素焦点和其他技术(甚至将其设置为enabled = false显示键盘)。

My Solution: Create a hideKeyboard Function: 我的解决方案:创建一个hideKeyboard函数:

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

And trigger it whenever the UI that's hosting the textfield becomes visible: 每当托管文本字段的UI变得可见时触发它:

For a Dialog: 对话:

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

For a widget: 对于小部件:

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

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

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