Android 中的输入验证,声明一个 InputType 就足够了

发布于 2024-12-10 15:46:37 字数 230 浏览 0 评论 0原文

我的活动中有几个字段,它们都采用整数,并且仅采用整数。 环顾这里的SO,我发现执行验证的最简单方法是简单地在我的layout.xml中声明一个Integer的InputType 这很好用。用户只能输入数字,我的业务逻辑很满意。它还可以处理空白字段。 但是,我想知道用户是否可以输入非数字值?我需要能够处理这个问题吗?如果答案是肯定的,那么这意味着我需要更新所有单元测试以及应用程序中的字段验证,但更愿意信任 Android 操作系统来完成此操作。

I have several fields in my activity which all take integers, and integers only.
Looking around the SO here I see that the easiest way to perform validation is to simply declare an InputType of Integer in my layout.xml
This works fine. User can only enter numbers and my business logic is happy. It can also handle blank fields.
However, I was wondered is there any possible way a user can input a non numeric value? Do I need to be able to handle this? If the answer is yes then it means I will need to update all my unit tests along with the field validation in my application but would prefer to trust Android OS to do it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

失去的东西太少 2024-12-17 15:46:37

如果正确使用InputType,用户将无法输入该InputType 未指定的任何字符。

If you use InputType correctly, the user won't be able to enter any characters that are not specified by that InputType.

闻呓 2024-12-17 15:46:37

如果您对此感到困扰,可以使用 InputFilter 来防止将无效字符输入/粘贴到 EditText 中。

InputFilter filter = new InputFilter() {
    @Override
    public CharSequencefilter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
        for(int i = start; i < end; i++) {
            if(!Character.isDigit(source.charAt(i))) {
                return "";
            }
        }
        return null;
    }
}

if you're OC'ed about this, you can use InputFilter to prevent invalid characters from being entered/pasted into the EditText.

InputFilter filter = new InputFilter() {
    @Override
    public CharSequencefilter(CharSequence source, int start, int end, Spanned dest, int dstart, int dend) {
        for(int i = start; i < end; i++) {
            if(!Character.isDigit(source.charAt(i))) {
                return "";
            }
        }
        return null;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文