Automatically add dash in phone number in Android

前端 未结 7 2339
-上瘾入骨i
-上瘾入骨i 2020-12-17 21:18

Instead of 5118710, it should be 511-8710. I\'d like to add a dash after the user the user inputted 3 digits already in the EditText. The maximum length of

7条回答
  •  盖世英雄少女心
    2020-12-17 21:38

    The most straightforward solution is to use PhoneNumberFormattingTextWatcher which will format the number according to the system locale.

    XML:

    
    

    Add addTextChangedListener() in your class:

    EditText phoneNumber = (EditText)findViewById(R.id.phone_number);
    phoneNumber.addTextChangedListener(new PhoneNumberFormattingTextWatcher());
    

提交回复
热议问题