Validating edittext in Android(在Android中验证edittext)
问题描述
我是安卓新手我正在尝试为一个项目编写应用程序.
I'm new to android & I'm trying to write an application for a project.
我需要检查用户是否在编辑文本中输入了 7 个数字和一个字母.示例:0000000x
I need to check whether the user has entered 7 numbers followed by one alphabet in edittext. Example: 0000000x
我该怎么做?蒂亚!:)
How should I do that? TIA! :)
推荐答案
可能最好的方法是使用 TextWatcher 传入 addTextChangedListener() 方法.这是一个使用示例:
Probably the best approach would be to use a TextWatcher passed into the addTextChangedListener() method of the EditText. Here is an example use:
editText.addTextChangedListener(new TextWatcher() {
@Override
public void afterTextChanged(Editable e) {
String textFromEditView = e.toString();
validateText(textFromEditView);
}
@Override
public void beforeTextChanged(CharSequence s, int start, int count, int after) {
//nothing needed here...
}
@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
//nothing needed here...
}
});
我将把 validateText(String)
方法的实现留给读者作为练习,但我想它应该足够简单.我会使用:
I will leave the implementation of the validateText(String)
method as an exercise for the reader, but I imagine it should be easy enough. I would either use:
- 一个简单的正则表达式.
- 或者由于这种情况很简单,检查字符串的长度是否为 8,并检查每个字符.有一个简单的实用程序类来检查字符的特征.Character.isDigit(char) 和 Character.isLetter(char)
这篇关于在Android中验证edittext的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在Android中验证edittext
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01