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

标签 android kotlin android-edittext phone-number android-textwatcher

我需要按照这种格式在 android 的编辑文本中格式化电话号码 (222) 222-2222 ext222222 我创建了一个为我自动格式化的观察者。观察者工作正常并正确格式化电话号码。我唯一的问题是,当有人手动转到输入电话中的其他位置并开始删除或添加号码时,自动格式化不起作用。 关于如何解决这个问题的任何想法。 这是我当前的观察者的样子:

editText.addTextChangedListener(object : TextWatcher {
    override fun onTextChanged(s: CharSequence, start: Int, before: Int, count: Int) {}

    override fun beforeTextChanged(s: CharSequence, start: Int, count: Int, after: Int) {}

    override fun afterTextChanged(s: Editable) {
        val text = editText.text.toString()
        val textLength = editText.text.length
        if (text.endsWith("-") || text.endsWith(" ")) {
            return
        }
        if (textLength == 1) {
            if (!text.contains("(")) {
                editText.setText(StringBuilder(text).insert(text.length - 1, "(").toString())
                editText.setSelection(editText.text.length)
            }
        } else if (textLength == 5) {
            if (!text.contains(")")) {
                editText.setText(StringBuilder(text).insert(text.length - 1, ")").toString())
                editText.setSelection(editText.text.length)
            }
        } else if (textLength == 6) {
            editText.setText(StringBuilder(text).insert(text.length - 1, " ").toString())
            editText.setSelection(editText.text.length)
        } else if (textLength == 10) {
            if (!text.contains("-")) {
                editText.setText(StringBuilder(text).insert(text.length - 1, "-").toString())
                editText.setSelection(editText.text.length)
            }
        } else if (textLength == 15) {
            if (text.contains("-")) {
                editText.setText(StringBuilder(text).insert(text.length - 1, " ext").toString())
                editText.setSelection(editText.text.length)
            }
        }
    }
})

最佳答案

如果一切都取决于我,这就是我可以处理的方式(见行间评论)。这仅适用于电话号码格式,假设它是一个最多 10 位数字的地区号码:

phoneNumber.addTextChangedListener(new TextWatcher() {
            @Override
            public void beforeTextChanged(CharSequence s, int start, int count, int after) {

            }

            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {




            }

            @Override
            public void afterTextChanged(Editable s) {

                /* Let me prepare a StringBuilder to hold all digits of the edit text */
                    StringBuilder digits = new StringBuilder();

                 /* this is the phone StringBuilder that will hold the phone number */

                    StringBuilder phone = new StringBuilder();

                 /* let's take all characters from the edit text */
                    char[] chars = phoneNumber.getText().toString().toCharArray();

                   /* a loop to extract all digits */
                    for (int x = 0; x < chars.length; x++) {
                        if (Character.isDigit(chars[x])) {
                            /* if its a digit append to digits string builder */
                            digits.append(chars[x]);
                        }
                    }


                    if (digits.toString().length() >=3) {
                        /* our phone formatting starts at the third character  and starts with the country code*/
                        String countryCode = new String();

                        /* we build the country code */
                        countryCode += "(" + digits.toString().substring(0, 3) + ") ";

                        /** and we append it to phone string builder **/
                        phone.append(countryCode);

                        /** if digits are more than or just 6, that means we already have our state code/region code **/
                        if (digits.toString().length()>=6)
                        {

                            String regionCode=new String();
                            /** we build the state/region code **/
                            regionCode+=digits.toString().substring(3,6)+"-";
                            /** we append the region code to phone **/
                            phone.append(regionCode);



                            /** the phone number will not go over 12 digits  if ten, set the limit to ten digits**/
                            if (digits.toString().length()>=10)
                            {
                                phone.append(digits.toString().substring(6,10));
                            }else
                            {
                                phone.append(digits.toString().substring(6));
                            }
                        }else
                        {
                            phone.append(digits.toString().substring(3));
                        }
                        /** remove the watcher  so you can not capture the affectation you are going to make, to avoid infinite loop on text change **/
                        phoneNumber.removeTextChangedListener(this);

                        /** set the new text to the EditText **/
                        phoneNumber.setText(phone.toString());
                        /** bring the cursor to the end of input **/
                        phoneNumber.setSelection(phoneNumber.getText().toString().length());
                        /* bring back the watcher and go on listening to change events */
                        phoneNumber.addTextChangedListener(this);

                    } else {
                        return;
                    }

            }
        });

每次用户更改 EditText 的值时,此代码都会重新格式化电话号码。我已经亲自测试过它并且它可以工作并且不会崩溃。你可以测试。

编辑:这是一段 java 代码,但我认为您可以轻松地将其重写为 Kotlin。

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

相关文章:

android - 如何在android中的警告对话框中添加阴影效果

安卓:MediaPlayer.setOnPreparedListener()

android - 如何在 Android kotlin、Moshi 和 Retrofit 中解析带有动态键的嵌套 JSON?

android - 如何使android edittext提示中心和左光标

android - android启动服务时,ui线程是否需要去等待才能启动?

android - androidx.collection.ArrayMap和android.util.ArrayMap有什么区别?

android - 如何将 Realm 与 RxJava2 一起使用

android - 如何从edittext插入数据

android - EditText 未显示在 Ice Cream Sandwich 下

android - 监视用户输入的 EditText 行的最有效方法是什么?