您好,登錄后才能下訂單哦!
比較簡單的一個控件,就是加些邏輯處理而已,以前貌似是直接監(jiān)聽的,封裝起來方便點
public class AccountTxtView extends android.support.v7.widget.AppCompatEditText { private final char CUT = '-'; public AccountTxtView(Context context) { super(context); } public AccountTxtView(Context context, AttributeSet attrs) { super(context, attrs); } public AccountTxtView(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); } @Override protected void onTextChanged(CharSequence text, int start, int lengthBefore, int lengthAfter) { if (text == null || text.length() == 0) return; StringBuilder sb = new StringBuilder(); for (int i = 0; i < text.length(); i++) {//添加分割符 if (i != 3 && i != 8 && text.charAt(i) == CUT) { continue; } else { sb.append(text.charAt(i)); if ((sb.length() == 4 || sb.length() == 9) && sb.charAt(sb.length() - 1) != CUT) { sb.insert(sb.length() - 1, CUT); } } } //防止多次設置值 if (!sb.toString().equals(text.toString())) { int index = start + 1; if (sb.charAt(start) == CUT) { if (lengthBefore == 0) { index++; } else { index--; } } else { if (lengthBefore == 1) { index--; } } setText(sb.toString()); setSelection(index); }else{//刪除時候判斷 String line = text.subSequence(text.length() - 1, text.length()).toString(); if (line.equals(String.valueOf(CUT))) {//如果刪除碰到‘-'符號,則默認去除 sb.deleteCharAt(text.subSequence(0, text.length() - 1).length()); setText(sb.toString()); setSelection(sb.length()); } } } public String getPhone() { String result = null; String val = getText().toString(); if (val == null || val.isEmpty()) return ""; result = val.replace(String.valueOf(CUT), ""); return result; } }
使用也簡單
然后效果就出來了
輸入第四個的時候自動填充‘-'分隔符,然后刪除的時候自動刪除‘-'分隔符
以上所述是小編給大家介紹的Android 自定義輸入手機號自動添加分隔符,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。