gpt4 book ai didi

android - 在 EditText 中自动格式化电话号码

转载 作者:bug小助手 更新时间:2023-10-28 10:48:05 31 4
gpt4 key购买 nike

在我的应用中,用户必须使用以下格式在 EditText 字段中输入电话号码:

1(515)555-5555

我不希望用户在输入数字时键入“(”、“)”或“-”;我希望自动添加这些字符。

例如,假设用户键入 1 -- 应该自动添加“1”后面的括号,以便显示“1(”。我希望有类似的功能同时删除。

我曾尝试在onTextWatcher接口(interface)的afterTextChanged方法中设置文本,但不起作用;相反,它会导致错误。任何帮助将不胜感激。

最佳答案

你可以试试

editTextPhoneNumber.addTextChangedListener(new PhoneNumberFormattingTextWatcher());

检查 PhoneNumnerFormattingTextWatxher

如果您想要自己实现 TextWatcher,那么您可以使用以下方法:

import android.telephony.PhoneNumberFormattingTextWatcher;
import android.text.Editable;

/**
* Set this TextWatcher to EditText for Phone number
* formatting.
*
* Along with this EditText should have
*
* inputType= phone
*
* maxLength=14
*/
public class MyPhoneTextWatcher extends PhoneNumberFormattingTextWatcher {

private EditText editText;

/**
*
* @param EditText
* to handle other events
*/
public MyPhoneTextWatcher(EditText editText) {
// TODO Auto-generated constructor stub
this.editText = editText;
}

@Override
public void onTextChanged(CharSequence s, int start, int before, int count) {
// TODO Auto-generated method stub
super.onTextChanged(s, start, before, count);

//--- write your code here
}

@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
// TODO Auto-generated method stub
super.beforeTextChanged(s, start, count, after);
}

@Override
public synchronized void afterTextChanged(Editable s) {
// TODO Auto-generated method stub
super.afterTextChanged(s);
}

}

关于android - 在 EditText 中自动格式化电话号码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5064576/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com