How to format Phone Number using Android Input Type
How to format Phone Number using Android Input Type
After creating PhoneNumberFormattingText.java under your package, go into your Activity or Fragment and do this below:
EditText ET = (EditText) findViewById(R.id.phoneInput);
ET.addTextChangedListener(new PhoneNumberFormattingTextWatcher(ET));
Thanks for contributions