76

我在做一个计算器。所以我Buttons用数字和函数自己做了。必须计算的表达式在 中EditText,因为我希望用户也可以在表达式中间添加数字或函数,所以EditText我有cursor. 但我想禁用Keyboard当用户点击EditText. 我发现这个例子是可以的Android 2.3,但是ICS禁用Keyboard了光标。

public class NoImeEditText extends EditText {

   public NoImeEditText(Context context, AttributeSet attrs) { 
      super(context, attrs);     
   }   

   @Override      
   public boolean onCheckIsTextEditor() {   
       return false;     
   }         
}

然后我NoImeEditText在我的XML文件中使用它

<com.my.package.NoImeEditText
      android:id="@+id/etMy"
 ....  
/>

我怎样才能使这个 EditText 与 ICS 兼容???谢谢。

4

15 回答 15

61

下面的代码适用于 API >= 11 和 API < 11。光标仍然可用。

/**
 * Disable soft keyboard from appearing, use in conjunction with android:windowSoftInputMode="stateAlwaysHidden|adjustNothing"
 * @param editText
 */
public static void disableSoftInputFromAppearing(EditText editText) {
    if (Build.VERSION.SDK_INT >= 11) {
        editText.setRawInputType(InputType.TYPE_CLASS_TEXT);
        editText.setTextIsSelectable(true);
    } else {
        editText.setRawInputType(InputType.TYPE_NULL);
        editText.setFocusable(true);
    }
}
于 2013-06-19T19:51:49.930 回答
58

是一个可以为您提供所需内容的网站

作为总结,它提供了InputMethodManagerViewAndroid 开发者之间的链接。它将引用getWindowToken内部ViewhideSoftInputFromWindow()forInputMethodManager

链接中给出了更好的答案,希望这会有所帮助。

这是使用 onTouch 事件的示例:

editText_input_field.setOnTouchListener(otl);

private OnTouchListener otl = new OnTouchListener() {
  public boolean onTouch (View v, MotionEvent event) {
        return true; // the listener has consumed the event
  }
};

这是来自同一网站的另一个示例。这声称有效,但似乎是个坏主意,因为您的 EditBox 为 NULL 它将不再是编辑器:

MyEditor.setOnTouchListener(new OnTouchListener(){

  @Override
  public boolean onTouch(View v, MotionEvent event) {
    int inType = MyEditor.getInputType(); // backup the input type
    MyEditor.setInputType(InputType.TYPE_NULL); // disable soft input
    MyEditor.onTouchEvent(event); // call native handler
    MyEditor.setInputType(inType); // restore input type
    return true; // consume touch even
  }
});

希望这会为您指明正确的方向

于 2012-05-17T13:28:11.253 回答
34

您还可以直接在 API 21+ 上或通过 API 14+ 上的反射使用setShowSoftInputOnFocus(boolean) :

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
    editText.setShowSoftInputOnFocus(false);
} else {
    try {
        final Method method = EditText.class.getMethod(
                "setShowSoftInputOnFocus"
                , new Class[]{boolean.class});
        method.setAccessible(true);
        method.invoke(editText, false);
    } catch (Exception e) {
        // ignore
    }
}
于 2014-10-30T08:38:42.740 回答
24

将以下属性添加到布局文件中的 Edittext 控制器

<Edittext
   android:focusableInTouchMode="true"
   android:cursorVisible="false"
   android:focusable="false"  />

我一直在使用这个解决方案,它对我来说很好。

于 2018-06-27T08:09:01.223 回答
23
editText.setShowSoftInputOnFocus(false);
于 2019-07-17T17:05:14.040 回答
22

尝试:android:editable="false"android:inputType="none"

于 2012-05-17T14:40:14.670 回答
16

禁用键盘(API 11 到当前)

这是迄今为止我找到的禁用键盘的最佳答案(我见过很多)。

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { // API 21
    editText.setShowSoftInputOnFocus(false);
} else { // API 11-20
    editText.setTextIsSelectable(true);
}

无需使用反射或将其设置InputType为 null。

重新启用键盘

如果需要,这是您重新启用键盘的方法。

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { // API 21
    editText.setShowSoftInputOnFocus(true);
} else { // API 11-20
    editText.setTextIsSelectable(false);
    editText.setFocusable(true);
    editText.setFocusableInTouchMode(true);
    editText.setClickable(true);
    editText.setLongClickable(true);
    editText.setMovementMethod(ArrowKeyMovementMethod.getInstance());
    editText.setText(editText.getText(), TextView.BufferType.SPANNABLE);
}

请参阅此问答,了解为何需要撤消复杂的 pre API 21 版本setTextIsSelectable(true)

这个答案需要更彻底的测试。

我已经setShowSoftInputOnFocus在更高的 API 设备上进行了测试,但是在下面@androiddeveloper 的评论之后,我发现这需要进行更彻底的测试。

这里有一些剪切和粘贴代码来帮助测试这个答案。如果您可以确认它是否适用于 API 11 到 20,请发表评论。我没有任何 API 11-20 设备,我的模拟器有问题。

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    android:background="@android:color/white">

    <EditText
        android:id="@+id/editText"
        android:textColor="@android:color/black"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

    <Button
        android:text="enable keyboard"
        android:onClick="enableButtonClick"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <Button
        android:text="disable keyboard"
        android:onClick="disableButtonClick"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
</LinearLayout>

MainActivity.java

public class MainActivity extends AppCompatActivity {

    EditText editText;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        editText = (EditText) findViewById(R.id.editText);
    }

    // when keyboard is hidden it should appear when editText is clicked
    public void enableButtonClick(View view) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { // API 21
            editText.setShowSoftInputOnFocus(true);
        } else { // API 11-20
            editText.setTextIsSelectable(false);
            editText.setFocusable(true);
            editText.setFocusableInTouchMode(true);
            editText.setClickable(true);
            editText.setLongClickable(true);
            editText.setMovementMethod(ArrowKeyMovementMethod.getInstance());
            editText.setText(editText.getText(), TextView.BufferType.SPANNABLE);
        }
    }

    // when keyboard is hidden it shouldn't respond when editText is clicked
    public void disableButtonClick(View view) {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) { // API 21
            editText.setShowSoftInputOnFocus(false);
        } else { // API 11-20
            editText.setTextIsSelectable(true);
        }
    }
}
于 2017-07-21T05:14:35.273 回答
9

在 StackOverflow 上从多个地方收集解决方案,我认为下一个总结一下:

如果您不需要在活动的任何位置显示键盘,您可以简单地使用用于对话框的下一个标志(从这里获取):

    getWindow().setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM, WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);

如果您不希望它仅用于特定的 EditText,您可以使用它(从这里获取):

public static boolean disableKeyboardForEditText(@NonNull EditText editText) {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
        editText.setShowSoftInputOnFocus(false);
        return true;
    }
    if (Build.VERSION.SDK_INT > Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1)
        try {
            final Method method = EditText.class.getMethod("setShowSoftInputOnFocus", new Class[]{boolean.class});
            method.setAccessible(true);
            method.invoke(editText, false);
            return true;
        } catch (Exception ignored) {
        }
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR2)
        try {
            Method method = TextView.class.getMethod("setSoftInputShownOnFocus", boolean.class);
            method.setAccessible(true);
            method.invoke(editText, false);
            return true;
        } catch (Exception ignored) {
        }
    return false;
}

或者这个(取自这里):

 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
           editText.setShowSoftInputOnFocus(false);
       else
           editText.setTextIsSelectable(true); 
于 2017-07-24T06:52:05.633 回答
6

添加到 Alex Kucherenko 解决方案:调用后光标消失的问题setInputType(0)是由于 ICS(和 JB)上的框架错误。

该错误记录在此处:https ://code.google.com/p/android/issues/detail?id=27609 。

要解决此问题,请在通话setRawInputType(InputType.TYPE_CLASS_TEXT)setInputType立即致电。

要阻止键盘出现,只需覆盖OnTouchListenerEditText 并返回 true(吞下触摸事件):

ed.setOnTouchListener(new OnTouchListener() {

            @Override
            public boolean onTouch(View v, MotionEvent event) {

                return true;
            }
        });

光标出现在 GB 设备上而不是 ICS+ 上的原因让我把头发扯了几个小时,所以我希望这可以节省一些人的时间。

于 2013-06-08T14:00:57.737 回答
6

我发现这个解决方案对我有用。当在正确位置单击 EditText 时,它还会放置光标。

EditText editText = (EditText)findViewById(R.id.edit_mine);
// set OnTouchListener to consume the touch event
editText.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {
            v.onTouchEvent(event);   // handle the event first
            InputMethodManager imm = (InputMethodManager)v.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
            if (imm != null) {
                imm.hideSoftInputFromWindow(v.getWindowToken(), 0);  // hide the soft keyboard 
            }                
            return true;
        }
    });
于 2015-05-19T16:21:33.313 回答
5
// only if you completely want to disable keyboard for 
// that particular edit text
your_edit_text = (EditText) findViewById(R.id.editText_1);
your_edit_text.setInputType(InputType.TYPE_NULL);
于 2013-03-12T12:52:10.653 回答
4

只需设置:

 NoImeEditText.setInputType(0);

或在构造函数中:

   public NoImeEditText(Context context, AttributeSet attrs) { 
          super(context, attrs);   
          setInputType(0);
       } 
于 2012-05-17T13:35:17.270 回答
2

这对我有用。首先将其添加android:windowSoftInputMode="stateHidden"到您的 android 清单文件中,在您的活动下。如下所示:

<activity ... android:windowSoftInputMode="stateHidden">

然后在您的活动的 onCreate 方法上,添加以下代码:

EditText editText = (EditText)findViewById(R.id.edit_text);
edit_text.setOnTouchListener(new OnTouchListener() {

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        v.onTouchEvent(event);
        InputMethodManager inputMethod = (InputMethodManager)v.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
        if (inputMethod!= null) {
            inputMethod.hideSoftInputFromWindow(v.getWindowToken(), 0);
        }                
        return true;
    }
});

然后,如果您希望指针可见,请将其添加到您的 xml android:textIsSelectable="true"中。

这将使指针可见。这样,当您的活动开始时键盘不会弹出,并且当您单击编辑文本时也会隐藏。

于 2018-04-24T15:37:34.167 回答
2

只需将此行放在清单 android:windowSoftInputMode="stateHidden" 中的活动标记内

于 2018-07-03T11:07:48.097 回答
-2

我不知道这个答案是否更好,但我找到了一个可能更快的解决方案。在 XML 上,只需在 EditText 上添加此属性:

android:focusable="true"
android:focusableInTouchMode="false"

然后用 onClickListener 做你需要的事情。

于 2020-04-08T13:15:22.400 回答