最佳答案
我希望编辑器中有常量文本,比如:
http://<here_user_can_write>
用户不应该能够删除任何字符从“ http://
”,我搜索了这一点,发现这:
editText.setFilters(new InputFilter[] {
new InputFilter() {
public CharSequence filter(CharSequence src, int start,
int end, Spanned dst, int dstart, int dend) {
return src.length() < 1 ? dst.subSequence(dstart, dend) : "";
}
}
});
但我不知道它是否限制用户不删除任何字符从 从头到尾限制。我也不能理解限制类的使用。
如果我们可以在 EditText
里面放一个 TextView
的话,有一种方法会是一个很好的选择,但是我不认为这在 Android 中是可能的,因为两者都是视图,这可能吗?