How to put hyphen automatically between contact number in EditText in android
问题 I want to add hyphen in between contact umber automatically when user enters it at runtime & also it should remove it automaticaly, like 904-149-0646 i'm using this code, package com.cssoft.hyphen; import android.app.Activity; import android.os.Bundle; import android.text.Editable; import android.text.TextWatcher; import android.view.Menu; import android.view.MenuItem; import android.widget.EditText; public class MainActivity extends Activity { private EditText edit_number; @Override