EditText中的电话号码格式

时间:2014-10-14 03:01:34

标签: android android-edittext android-4.4-kitkat

我一直试图

XML文件

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/phoneEditText"
            android:layout_marginTop="10dp"
            android:padding="16dp"
            android:inputType="phone"/>

爪哇

 etContact = (EditText)findViewById( R.id.phoneEditText );
 etContact.addTextChangedListener(new PhoneNumberFormattingTextWatcher() );

要成功格式化用户输入的数字,但无法在我的Nexus 5测试设备上执行格式化,而在较低的API级别上则可以正常工作。我不确定自KitKat以来它是否已被逐步淘汰,但它现在拒绝工作。是否有解决方法或其他调用以使其能够在KitKat上运行?

0 个答案:

没有答案