美国 android手机号码,格式编辑文本为美国电话号码1(xxx)-xxxx你输入android?

该博客介绍了如何在EditText中实现输入控制,通过TextWatcher监听输入,自动在开头添加指定前缀,并在输入过程中删除所有空格。这个功能可以用于电话号码等需要特定格式输入的场景,避免使用第三方库。
摘要由CSDN通过智能技术生成

似乎您需要将TextChangedListener添加到您的编辑和准备处理中。

这是在开头插入+7的小例子(实际上,对于 - 中间逻辑保持不变,只需要另一个字符串操作):

/** Helper to control input phone number */

static class PrefixEntryWatcher implements TextWatcher {

/** flag to avoid re-enter in {@link PhoneEntryWatcher#afterTextChanged(Editable)}*/

private boolean isInAfterTextChanged = false;

/** Prefix to insert */

private final String prefix;

/** Prefix to insert length */

private final int prefixLength;

/** Weak reference to parent text edit */

private final WeakReference parentEdit;

/**

* Default constructor

*

* @param prefix to be used for prefix

*/

PrefixEntryWatcher(final String prefix, final EditText parentEdit) {

this.prefix = prefix;

this.prefixLength = (prefix == null ? 0 : prefix.length());

this.parentEdit = new WeakReference(parentEdit);

}

@Override

public synchronized void afterTextChanged(final Editable text) {

if (!this.isInAfterTextChanged) {

this.isInAfterTextChanged = true;

if (text.length() <= this.prefixLength) {

text.clear();

text.insert(0, this.prefix);

final EditText parent = this.parentEdit.get();

if (null != parent) {

parent.setSelection(this.prefixLength);

}

}

else {

if (!this.prefix.equals(text

.subSequence(0, this.prefixLength).toString())) {

text.clear();

text.insert(0, this.prefix);

}

final String withoutSpaces

= text.toString().replaceAll(" ", "");

text.clear();

text.insert(0, withoutSpaces);

}

// now delete all spaces

this.isInAfterTextChanged = false;

}

}

@Override

public void beforeTextChanged(final CharSequence s,

final int start,

final int count,

final int after) {

// nothing to do here

}

@Override

public void onTextChanged(final CharSequence s,

final int start,

final int before,

final int count) {

// nothing to do here

}

}它的代码和逻辑并不多,因此这种类型的EditText处理似乎不需要第三方库。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值