安卓:EditText上打开键盘自动,如何停止?

问题描述 投票:17回答:6

我有超过如下定义的EditText简单ListView

当应用程序运行时,的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" />
android android-edittext xamarin.android xamarin
6个回答
29
投票

首先,标签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>

13
投票

我发现这是解决方案:

Window.SetSoftInputMode (SoftInput.StateAlwaysHidden);

注:这是在C#不是Java的Android


8
投票

在添加的onCreate这

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

4
投票

试试这个布局

<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;
        }
    });

我不知道这是什么用途。我甚至不知道它做什么。但它解决了类似的问题对我来说。 SRY如果我浪费了你的时间


1
投票

我发现我的解决方案,你可以试试这个和它的作品完美。

XML(我设置EDITTEXT focusableInTouchMode在默认为false):

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

和我改变focusableInTouchMode在java中接触后:

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

0
投票

机器人:windowSoftInputMode =“stateHidden”并没有为我工作。也没有乱搞与要素集中和其他技术(甚至将其设置为启用=假节目键盘)。

我的解决方案:创建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();
}
© www.soinside.com 2019 - 2024. All rights reserved.