- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要对EditText的输入设置一些限制,只允许用户输入a-z
,A-Z
,0-9
,分号;
和汉字
.
我的布局很简单,一个edittext和一个Button,如果edittext输入符合要求,按钮就会显示并触发事件。
我写了下面的代码,但其中有一些错误,有些功能无法实现,所以我需要有人的帮助,任何帮助将不胜感激。
public class MainActivity extends Activity {
private static String tag = "MainActivity";
private Button btn;
private EditText edt, content;
private final int[] code = { 8, 13, 32, 48, 49, 50, 51, 52, 53, 54, 55, 56,
57, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80,
81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 186 };
private String digits = "0123456789abcdefghijklmnopqrstuvwxyz;";
private String tmp;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
btn = (Button) findViewById(R.id.btn_edit);
btn.setEnabled(false);
edt = (EditText) findViewById(R.id.edt);
edt.addTextChangedListener(edt_watcher);
// edt.setOnKeyListener(input);
btn.setOnClickListener(l);
}
//My first try:Keyboard to monitor events,Monitoring whether the keyCode is in the button collection of the permit
//The issue is once i push something not in collection,the input content being refreshed
OnKeyListener input = new OnKeyListener() {
@Override
public boolean onKey(View v, int keyCode, KeyEvent event) {
// TODO Auto-generated method stub
for (int i = 0; i < code.length; i++) {
if (keyCode != code) {
edt.setText(tmp);
edt.invalidate();
}
}
return false;
}
};
//my second try:Text input to monitor,after the listen i get edt.gettext then do splicing processing,after that i set back to edittext.
//issue:everytime input legal characters will add to the left side.the cursor always keep in left side,any suggestions here?
// Text input to monitor
TextWatcher edt_watcher = new TextWatcher() {
@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
String str = s.toString();
String edttext = edt.getText().toString();
StringBuffer sb = new StringBuffer();
// TODO Auto-generated method stub
if (s.length() > 0 && str.matches("[a-zA-Z_0-9;]+")
|| str.matches("[\u4e00-\u9fa5]+")) {
sb = sb.append(s);
edt.setText(sb.toString());
Log.v(tag, sb.toString()+"======sb");
btn.setEnabled(true);
} else {
edttext = sb.append(tmp).toString();
Log.v(tag, edttext + "======edttext");
edt.setText(edttext);
tmp = str.substring(0,s.toString().length()-2);
edt.setText(tmp);
btn.setEnabled(false);
}
Log.v(tag, s + "======s");
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
Log.v(tag, s + "======beforeTextChanged");
}
//My third try:as comment blow,I don't know how to achieve do all the chinese letters contain in digits
@Override
public void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
Log.v(tag, s + "======afterTextChanged");
/*String str = s.toString();
if (str.equals(tmp)) {
return;
// if `tmp==str` return,as i set the result like this,else will be endless loop.
}
StringBuffer sb = new StringBuffer();
for (int i = 0; i < str.length(); i++) {
if (digits.indexOf(str.charAt(i)) >= 0) {
// judge input characters allowed or not
sb.append(str.charAt(i));
//if allowed,add to the result ,else skip it
}
tmp = sb.toString();// set tmp,next line also can trggier it
edt.setText(tmp);// set result
edt.invalidate();
}
if ((str.matches("[a-zA-Z_0-9;]+") || str
.matches("[\u4e00-\u9fa5]+"))) {
sb.toString().substring(str.length());
}
tmp = sb.toString();
edt.setText(tmp);
edt.invalidate();*/
}
};
//judge if input is Chinese characters,the method not be used
private boolean isChinese(char c) {
Character.UnicodeBlock ub = Character.UnicodeBlock.of(c);
if (ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS
|| ub == Character.UnicodeBlock.CJK_COMPATIBILITY_IDEOGRAPHS
|| ub == Character.UnicodeBlock.CJK_UNIFIED_IDEOGRAPHS_EXTENSION_A
|| ub == Character.UnicodeBlock.GENERAL_PUNCTUATION
|| ub == Character.UnicodeBlock.CJK_SYMBOLS_AND_PUNCTUATION
|| ub == Character.UnicodeBlock.HALFWIDTH_AND_FULLWIDTH_FORMS) {
String edttext = edt.getText().toString();
StringBuffer sb = new StringBuffer(edttext);
sb.append(c);
edt.setText(sb);
return true;
}
return false;
}
///judge if input is number or letters or ;,the method not be used
private boolean isRightData(CharSequence s) {
if (s.toString().matches("[0-9;]+")
|| s.toString().matches("[a-zA-Z]+")) {
String edttext = edt.getText().toString();
StringBuffer sb = new StringBuffer(edttext);
sb.append(s);
edt.setText(sb);
edt.invalidate();
return true;
}
return false;
}
OnClickListener l = new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent = new Intent(MainActivity.this, IldmActivity.class);
intent.putExtra("edt", edt.getText().toString());
startActivityForResult(intent, 10);
Log.v(tag, edt.getText() + "intent");
}
};
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 10 && resultCode == RESULT_OK) {
}
};
}
最佳答案
下面的代码只接受 0 到 9 位数字,所以解决你的问题。
public static void setPhoneNumberFilter(final EditText edt, final int length){ InputFilter[] filters = new InputFilter[1];
final int len = edt.getText().toString().length();
Log.e("MIS", "" + edt.getText().toString());
Log.e("MIS", "" + edt.getText().toString().length());
if (len > length - 1) {
return;
}
filters[0] = new InputFilter() {
public CharSequence filter(CharSequence source, int start, int end,
Spanned dest, int dstart, int dend) {
// TODO Auto-generated method stub
try {
char[] acceptedChars = new char[] { '0', '1', '2', '3',
'4', '5', '6', '7', '8', '9' };
for (int index = 0; index < end; index++) {
if (!new String(acceptedChars).contains(String
.valueOf(source.charAt(index)))
|| edt.getText().toString().length() > length - 1) {
return "";
}
}
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
};
edt.setFilters(filters);
}
setPhoneNumberFilter(edtxt,10);
关于Android 对 edittext 的限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16556415/
我有一个 ServiceBusQueue(SBQ),它获取大量消息负载。我有一个具有 accessRights(manage) 的 ServiceBusTrigger(SBT),它不断轮询来自 SBQ
在下面给出的结果集中,有 2 个唯一用户 (id),并且查询中可能会出现更多此类用户: 这是多连接查询: select id, name, col1Code, col2Code, col2Va
我正在用 Python 2.7.3 编写一个带有 GRequests 的小脚本和 lxml 可以让我从各种网站收集一些收藏卡价格并进行比较。问题是其中一个网站限制了请求的数量,如果我超过它,就会发回
我想知道何时实际使用删除级联或删除限制以及更新级联或更新限制。我对使用它们或在我的数据库中应用感到很困惑。 最佳答案 在外键约束上使用级联运算符是一个热门话题。 理论上,如果您知道删除父对象也将自动删
下面是我的输出,我只想显示那些重复的名字。每个名字都是飞行员,数字是飞行员驾驶的飞机类型。我想显示驾驶不止一架飞机的飞行员的姓名。我正在使用 sql*plus PIL_PILOTNAME
我正在评估不同的移动框架,我认为 nativescript 是一个不错的选择。但我不知道开发过程是否存在限制。例如,我对样式有限制(这并不重要),但我想知道将来我是否可以有限制并且不能使用某些 nat
我正在尝试使用 grails 数据绑定(bind)将一些表单参数映射到我的模型中,但我认为在映射嵌入式集合方面可能存在一些限制。 例如,如果我提交一些这样的参数,那么映射工作正常: //this wo
是否可以将 django 自过滤器起的时间限制为 7 天。如果日期超过 7 天,则不应用过滤器 最佳答案 timesince 的源代码位于 django/django/utils/timesince.
我想在我的网站上嵌入一个 PayPal 捐赠按钮。但问题是我住在伊朗——这个国家受到制裁,人们不使用国际银行账户或主要信用卡。 有什么想法吗?请帮忙! 问候 沮丧 最佳答案 您可以在伊朗境内使用为伊朗
这是我的查询 select PhoneNumber as _data,PhoneType as _type from contact_phonenumbers where ContactID = 3
这个问题在这里已经有了答案: What is the maximum number of parameters passed to $in query in MongoDB? (4 个答案) 关闭
我的一个项目的 AndroidManifest.xml 变得越来越大(> 1000 行),因为我必须对某些文件类型使用react并且涵盖所有情况变得越来越复杂。我想知道 list 大小是否有任何限制。
在使用 Sybase、Infomix、DB2 等其他数据库产品多年后使用 MySQL 5.1 Enterprise 时;我遇到了 MySQL 不会做的事情。例如,它只能为 SELECT 查询生成 EX
这个问题在这里已经有了答案: What is the maximum number of parameters passed to $in query in MongoDB? (4 个回答) 关闭5年
通常我们是在{$apache}/conf/httpd.conf中设置Apache的参数,然而我们并没有发现可以设置日志文件大小的配置指令,通过参考http://httpd.apache.org/do
我正在搜索最大的 Android SharedPreferences 键值对,但找不到任何好的答案。其次,我想问一下,如果我有一个键,它的字符串值限制是多少。多少字符可以放入其中。如果我需要频繁更改值
我目前正在试验 SoundCloud API,并注意到我对/tracks 资源的 GET 请求一次从不返回超过 200 个结果。关于这个的几个问题: 这个限制是故意的吗? 有没有办法增加这个限制? 如
我正在与一家名为 Dwolla 的金融技术公司合作,该公司提供了一个 API,用于将银行信息附加到用户并收取/发送 ACH 付款。 他们需要我将我的 TLS 最低版本升级到 1.2(禁用 TLS 1.
我在 PHP 中有一个多维数组,如下所示: $array = Array ( [0] => Array ( [bill] => 1 ) [1] => Array ( [
我在获取下一个查询的第一行时遇到了问题: Select mar.Title MarketTitle, ololo.NUMBER, ololo.Title from Markets mar JOIN(
我是一名优秀的程序员,十分优秀!