android format edittext to display spaces after every 4 characters(android格式edittext每4个字符后显示空格)
问题描述
Android - 我想将用户输入的数字输入 EditText - 它需要用空格分隔 - 每 4 个字符.示例:123456781234 -> 1234 5678 1234
这仅用于视觉目的.但是我需要不带空格的字符串以供进一步使用.
我能做到这一点的最简单方法是什么?
需要使用TextWatcher 实现视觉目的空间.
并使用任何简单的 按空格分割字符串 逻辑将其加入或循环遍历每个字符的整个字符串,并从字符串中消除 (char) 32
p>
Android - I want to get a number input from the user into an EditText - it needs to be separated by spaces - every 4 characters. Example: 123456781234 -> 1234 5678 1234
This is only for visual purpose. However i need the string without spaces for further usage.
What is the easiest way I can do this?
You need to use TextWatcher to achieve visual purpose spaces.
And use any simply split string by space logic to join it back or loop through the entire string per character wise and eliminate (char) 32
from the string
这篇关于android格式edittext每4个字符后显示空格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:android格式edittext每4个字符后显示空格
基础教程推荐
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01