我正在做一个计算器。所以我用数字和函数制作了自己的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兼容???谢谢。
刚设置:
NoImeEditText.setInputType(0);
或者在构造函数中:
public NoImeEditText(Context context, AttributeSet attrs) {
super(context, attrs);
setInputType(0);
}
要添加到Alex Kucherenko解决方案:调用setInputType(0)
后光标消失的问题是由于ICS(和JB)上的框架错误。
这里记录了这个错误:https://code.google.com/p/android/issues/detail?id=27609。
要解决此问题,请在setRawInputType(InputType.TYPE_CLASS_TEXT)
调用之后立即调用setInputType
。
要阻止键盘出现,只需覆盖EditText的OnTouchListener
并返回true(吞下触摸事件):
ed.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
return true;
}
});
光标出现在GB设备而不是ICS +上的原因让我把头发拉了几个小时,所以我希望这可以节省一些人的时间。
这对我有用。首先在您的活动下的Android清单文件中添加此android:windowSoftInputMode="stateHidden"
。如下:
<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"
上添加此指针。
这将使指针可见。这样,当您的活动开始时键盘不会弹出,当您单击edittext时也会隐藏键盘。
只需将此行放在manifest android中的activity标记内:windowSoftInputMode =“stateHidden”
editText.setShowSoftInputOnFocus(false);
您也可以直接在API 21+上使用setShowSoftInputOnFocus(boolean)或通过API 14+上的反射:
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
}
}
这是迄今为止我发现的禁用键盘的最佳答案(我已经看过很多)。
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)
:
我已经在更高级的API设备上测试了setShowSoftInputOnFocus
,但在下面的@ 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>
main activity.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);
}
}
}
将以下属性添加到布局文件中的Edittext控制器
<Edittext
android:focusableInTouchMode="true"
android:cursorVisible="false"
android:focusable="false" />
我一直在使用这个解决方案,它对我来说很好。
我发现这个解决方案对我有用。当在正确的位置单击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;
}
});
在StackOverflow上从多个地方收集解决方案,我认为下一个总结了它:
如果您不需要在活动的任何位置显示键盘,则只需使用用于对话框的下一个标志(从here获取):
getWindow().setFlags(WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM, WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
如果您不希望它仅用于特定的EditText,您可以使用它(从here获取):
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;
}
或者这(取自here):
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
editText.setShowSoftInputOnFocus(false);
else
editText.setTextIsSelectable(true);
// 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);