我有一个EditText字段,需要限制其中的内容。
只有A-Z 0-9,I和O被拒绝,最多17个字符。这是一个VIN号码字段。我的字段设置如下:
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="VIN">
<EditText
android:id="@+id/txtVIN"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:imeActionLabel="VIN"
android:imeOptions="actionDone"
android:inputType="textNoSuggestions"
android:maxLength="17"
android:digits="ABCDEFGHJKLMNPQRSTUVWXYZ0123456789"
android:maxLines="1" />
</android.support.design.widget.TextInputLayout>
我想补充说android:digits="ABCDEFGHJKLMNPQRSTUVWXYZ0123456789"
没有用。只有输入过滤器起作用。
以下设置在onCreateView
private void setupVIN(View view) {
final String allowed = "ABCDEFGHJKLMNPQRSTUVWXYZ0123456789";
txtVIN = view.findViewById(R.id.txtVIN);
txtVIN.setInputType(InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD | EditorInfo.TYPE_TEXT_FLAG_CAP_CHARACTERS);
txtVIN.setImeOptions(EditorInfo.IME_ACTION_DONE);
InputFilter[] vinFilters = new InputFilter[3];
vinFilters[0] = new InputFilter.LengthFilter(17);
vinFilters[1] = new InputFilter.AllCaps();
vinFilters[2] = new InputFilter() {
@Override
public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
if (source != null && !allowed.contains((source))) {
return "";
}
return null;
}
};
txtVIN.setFilters(vinFilters);
txtVIN.addTextChangedListener(new TextWatcher() {
@Override
public void beforeTextChanged(CharSequence charSequence, int i, int i1, int i2) {
//
}
@Override
public void onTextChanged(CharSequence charSequence, int i, int i1, int i2) {
if (txtVIN.getText().length() == 17) {
Utilities.hideSoftKeyboard(getActivity());
postVINForDecoding(String.valueOf(txtVIN.getText()));
}
}
@Override
public void afterTextChanged(Editable editable) {
}
});
txtVIN.setOnEditorActionListener(new TextView.OnEditorActionListener() {
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
if (actionId == EditorInfo.IME_ACTION_DONE) {
if (txtVIN.getText().length() == 17) {
postVINForDecoding(String.valueOf(txtVIN.getText()));
}
return true;
}
return false;
}
});
}
上面的代码工作正常。它只允许17个大写字符,不包括I和O.
问题是当视图填充了数据并显示时,该字段被清除。 但我仍然可以输入该字段。
@Override
public void onResume() {
super.onResume();
//test data
txtVIN.setText("JTJGA31U240037679");
}
如果我删除vinFilters[2]
,则会显示预先填充的数据。
有任何建议吗?
答案 0 :(得分:0)
它与你选择做的有点不同但我认为如果你只是穿上你的afterTextChanged它应该对你有用:
final String result = txtVIN.getText().replaceAll("[^A-Z0-9]", "")
.replace("O", "")
.replace("I", "");
if (!result.equals(txtVIN.getText())) {
txtVIN.setText(result);
}