3

Androidの編集テキストに電話番号を入力するときに、(xxx)xxx-xxxxxの形式で電話番号を設定するにはどうすればよいですか?

(,),- 文字が特定の位置に自動的に追加されます。

コードを書きましたが、andorid 2.2 バージョンでのみ機能し、上記のバージョンでは機能しません。 stackoverflow でさらに多くの質問を検索しましたが、取得できませんでした。

私のコードをチェックしてください:

phone.addTextChangedListener(new TextWatcher () {

            @Override
            public void afterTextChanged(Editable chars) {
                // TODO Auto-generated method stub
            }

            @Override
            public void beforeTextChanged(CharSequence s, int start, int count,
                    int after) {
                // TODO Auto-generated method stub
            }

            @Override
            public void onTextChanged(final CharSequence s, final int start, int lengthBefore,
                    int lengthAfter) {
                // TODO Auto-generated method stub
                count = start;

                /*if (phone.getText().length() <= 0) {
                    phone.append("(");
                    phone.setSelection(1);
                }else if (count == 3) {
                    phone.append(")");
                }else if (count == 7) {
                    phone.append("-");
                }

            */

            }
        });



phone.setOnKeyListener(new OnKeyListener (){

                @Override
                public boolean onKey(View arg0, int arg1, KeyEvent arg2) {
                    // TODO Auto-generated method stub
                    if(arg1 == KeyEvent.KEYCODE_DEL){
                        if(count > 0){
                            count = count - 1;
                        }
                    }else{
                        if(phone.getText().length() <= 0){
                            phone.append("(");
                        }else{
                            if(count  == 3){
                                phone.append(")");
                            }else if(count == 7){
                                phone.append("-");
                            }
                        }
                    }
                    return false;
                }

            });


        }

次のように表示されるログキャット:

01-03 15:07:23.529: W/InputManagerService(153): Window already focused, ignoring focus gain of: com.android.internal.view.IInputMethodClient$Stub$Proxy@40900f88
01-03 15:07:23.529: D/StatusBarPolicy(221): mFullChargeListener
01-03 15:07:25.749: V/AudioPolicyManager(84): startOutput() output 1, stream 1, session 1488
01-03 15:07:25.749: V/AudioPolicyManager(84): changeRefCount() stream 1, count 1
01-03 15:07:25.749: V/AudioPolicyManager(84): getDeviceForStrategy() from cache strategy 0, device 2
01-03 15:07:25.749: V/AudioPolicyManager(84): getNewDevice() selected device 2
01-03 15:07:25.749: V/AudioPolicyManager(84): setOutputDevice() output 1 device 2 delayMs 0
01-03 15:07:25.749: V/AudioPolicyManager(84): setOutputDevice() setting same device 2 or null device for output 1
01-03 15:07:25.749: V/AudioPolicyManager(84): releaseOutput() 1
01-03 15:07:25.769: V/AudioHardwareMSM72XX(84): open driver
01-03 15:07:25.769: V/AudioHardwareMSM72XX(84): get config
01-03 15:07:25.769: V/AudioHardwareMSM72XX(84): set config
01-03 15:07:25.769: V/AudioHardwareMSM72XX(84): buffer_size: 4800
01-03 15:07:25.769: V/AudioHardwareMSM72XX(84): buffer_count: 2
01-03 15:07:25.769: V/AudioHardwareMSM72XX(84): channel_count: 2
01-03 15:07:25.769: V/AudioHardwareMSM72XX(84): sample_rate: 44100
01-03 15:07:25.939: W/AudioFlinger(84): write blocked for 164 msecs, 61 delayed writes, thread 0xcdd0
01-03 15:07:26.009: V/AudioPolicyManager(84): stopOutput() output 1, stream 1, session 1488
01-03 15:07:26.009: V/AudioPolicyManager(84): changeRefCount() stream 1, count 0
01-03 15:07:26.009: V/AudioPolicyManager(84): getNewDevice() selected device 0
01-03 15:07:26.009: V/AudioPolicyManager(84): setOutputDevice() output 1 device 0 delayMs 0
01-03 15:07:26.009: V/AudioPolicyManager(84): setOutputDevice() setting same device 0 or null device for output 1
01-03 15:07:26.699: V/AudioPolicyManager(84): startOutput() output 1, stream 1, session 1489
01-03 15:07:26.699: V/AudioPolicyManager(84): changeRefCount() stream 1, count 1
01-03 15:07:26.699: V/AudioPolicyManager(84): getDeviceForStrategy() from cache strategy 0, device 2
01-03 15:07:26.699: V/AudioPolicyManager(84): getNewDevice() selected device 2
01-03 15:07:26.699: V/AudioPolicyManager(84): setOutputDevice() output 1 device 2 delayMs 0
01-03 15:07:26.699: V/AudioPolicyManager(84): setOutputDevice() setting same device 2 or null device for output 1
01-03 15:07:26.699: V/AudioPolicyManager(84): releaseOutput() 1
01-03 15:07:26.859: V/AudioPolicyManager(84): stopOutput() output 1, stream 1, session 1489
01-03 15:07:26.859: V/AudioPolicyManager(84): changeRefCount() stream 1, count 0
01-03 15:07:26.859: V/AudioPolicyManager(84): getNewDevice() selected device 0
01-03 15:07:26.859: V/AudioPolicyManager(84): setOutputDevice() output 1 device 0 delayMs 0
01-03 15:07:26.859: V/AudioPolicyManager(84): setOutputDevice() setting same device 0 or null device for output 1
01-03 15:07:27.499: I/StatusBarPolicy(221): BAT. status:5 health:2
4

4 に答える 4

2

それが役立つ場合は、このライブラリを使用してみてください。

http://code.google.com/p/libphonenumber/

またはこれを試してみてください:

    String formattedNumber = PhoneNumberUtils.formatNumber(unformattedNumber);

これにより、番号の出身国の規則に従って番号が自動的にフォーマットされます。

次を使用して、編集可能なテキストをインプレースでフォーマットすることもできます。

    PhoneNumberUtils.formatNumber(Editable text, int defaultFormattingType);

その他のオプションについては、PhoneNumberUtilsをご覧ください。

于 2013-01-03T09:49:54.377 に答える
1

電話番号をフォーマットするテキスト変更リスナーを登録できます。android.telephony パッケージに組み込まれています。

使い方は簡単です:

    phoneNumberEditText.addTextChangedListener(new PhoneNumberFormattingTextWatcher());
于 2014-08-27T01:41:20.527 に答える
0

あなたのxmlでこれを試してください。

  <EditText android:id="@+id/editText1"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:layout_weight="1"
   android:ems="10"
   android:inputType="phone" >
    <requestFocus />
 </EditText>
于 2013-01-03T12:21:30.823 に答える
0

私はAndroid APIがこれを行うことができると思います.FormatNanpNumber(String)メソッドを フォーマットする米国/アメリカ専用のPhoneNumberUtilsをすでにチェックアウトしています.

于 2013-01-03T13:45:50.360 に答える