我的手机刚刚从Android 6.0更新到7.0。更新后,我注意到我的应用程序中的功能无法正常使用,也就是说,EditText将不接受输入的字符,而是重复先前输入的字符。控制键盘设置为CapCharacter,因此有大写字母。如果我将其设置为大写锁定,则可以正常工作。
以下是相关的代码段
<EditText
android:id="@+id/etEntry"
style="@android:style/Widget.EditText"
android:digits="cvABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789*?.,^+[](|){}\\~-"
android:hint="@string/searchterm"
android:imeOptions="actionSearch|flagForceAscii"
android:inputType="textCapCharacters|textNoSuggestions"
android:singleLine="true"
android:visibility="visible"
tools:hint="Search Term" />
该控件有一个TextWatcher,并且stype值为3(模式),因此它绕过了修改输入的部分。
private boolean mWasEdited = false;
@Override
public void afterTextChanged(Editable s) {
if (mWasEdited){
mWasEdited = false;
return;
}
mWasEdited = true;
String enteredValue = s.toString();
if (stype.getSelectedItemPosition() != 3) { // not pattern
String newValue = enteredValue.replaceAll("[cv0123456789.,^+-]", "");
int caret = etTerm.getSelectionStart();
if (stype.getSelectedItemPosition() != 0 && // not anagram
stype.getSelectedItemPosition() != 3) { // and not pattern
newValue = newValue.replaceAll("[*]", "");
}
if (Arrays.asList(2,7,8).contains(stype.getSelectedItemPosition())) { // hooks, begins, ends
newValue = newValue.replaceAll("[?]", "");
}
etTerm.setText(newValue);
etTerm.setSelection(Math.min(newValue.length(), caret)); // if first char is invalid
}
}
};
我假设我要么必须配置控件的键盘方面,要么要做onTextChanged。这是一个谜。
答案 0 :(得分:0)
我想通了,尽管我不明白为什么要这样做,因为我没有在EditText中进行任何更改。
我更改了最后几行代码,在条件语句之前声明了插入号,向内部条件语句添加了返回值,并在之后为类型3添加了两行。
public void afterTextChanged(Editable s) {
if (mWasEdited){
mWasEdited = false;
return;
}
mWasEdited = true;
String enteredValue = s.toString();
int caret = etTerm.getSelectionStart();
if (stype.getSelectedItemPosition() != 3) { // not pattern
String newValue = enteredValue.replaceAll("[cv0123456789.,^+-]", "");
if (stype.getSelectedItemPosition() != 0 && // not anagram
stype.getSelectedItemPosition() != 3) { // and not pattern
newValue = newValue.replaceAll("[*]", "");
}
if (Arrays.asList(2,7,8).contains(stype.getSelectedItemPosition())) {
newValue = newValue.replaceAll("[?]", "");
}
etTerm.setText(newValue);
etTerm.setSelection(Math.min(newValue.length(), caret));
return;
}
etTerm.setText(enteredValue);
etTerm.setSelection(Math.min(enteredValue.length(), caret));
}
};