0

編集テキスト ビューがあり、ユーザーがフィールドへの書き込みを停止して次のフィールドに移動した直後に検証を行いたいので、AfterTextChanged を使用するのが理にかなっていると判断しました。

問題は、AfterTextChanged が、キーストロークごとに括弧内に記述したコードを実行することです。

etUserPasswordSignupPage.addTextChangedListener(new TextWatcher() {

            @Override
            public void afterTextChanged(Editable s) {
                //do some validation and then TOAST 
            }
        });

そして、入力中にトーストが複数回表示されます:(ユーザーが入力を停止して別のフィールドに移動するか、完了してから「afterTextChanged」のコードを実行するまで待機させるにはどうすればよいですか?

編集:

setOnEditorActionListener を実装した後に何が起こったかを次に示します。

09-26 17:15:36.275: E/AndroidRuntime(2102): FATAL EXCEPTION: main
09-26 17:15:36.275: E/AndroidRuntime(2102): java.lang.NullPointerException
09-26 17:15:36.275: E/AndroidRuntime(2102):     at net.shiftinpower.activities.Signup$4.onEditorAction(Signup.java:154)
09-26 17:15:36.275: E/AndroidRuntime(2102):     at android.widget.TextView.onEditorAction(TextView.java:3377)
09-26 17:15:36.275: E/AndroidRuntime(2102):     at com.android.internal.widget.EditableInputConnection.performEditorAction(EditableInputConnection.java:83)
09-26 17:15:36.275: E/AndroidRuntime(2102):     at com.android.internal.view.IInputConnectionWrapper.executeMessage(IInputConnectionWrapper.java:301)
09-26 17:15:36.275: E/AndroidRuntime(2102):     at com.android.internal.view.IInputConnectionWrapper$MyHandler.handleMessage(IInputConnectionWrapper.java:79)

ここに私の実際のコードがあります:

etUserPasswordAgainSignupPage.setOnEditorActionListener(new OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
         if (event.getAction() == KeyEvent.ACTION_DOWN && event.getKeyCode() == KeyEvent.KEYCODE_ENTER) {
            userPasswordAgain = etUserPasswordAgainSignupPage.getText().toString();

            if (userPasswordAgain.equals("")) {
                Toast.makeText(net.asdqwe.activities.Signup.this, configurationz.ERROR_MESSAGES_SIGNUP_FIELD_NOT_FILLED, Toast.LENGTH_SHORT).show();
            } else {
                passwordAgainIsOk = true;
                Log.d("kylie", "pass again is ok");
            }

            if (!(userPassword.equals(userPasswordAgain))) {
                Toast.makeText(net.asdqwe.activities.Signup.this, configurationz.ERROR_MESSAGES_SIGNUP_PASSWORDS_DO_NOT_MATCH, Toast.LENGTH_SHORT).show();
                passwordsMatch = false;
            } else {
                passwordsMatch = true;
                Log.d("kylie", "passwords match");
            }
        }
        return false;
    }
});
4

1 に答える 1

2

以下のコードを試してください....このコードは、EditTextがフォーカスを失うとすぐに onFocusChangeListener() をトリガーします

   EditText et = new EditText(this); 
   //or
   EditText et = (EditText)findViewById(R.id.editText);
   et.setOnFocusChangeListener(new OnFocusChangeListener() { 
        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            // TODO Auto-generated method stub
            if(!hasFocus){
                //Validate the string entered in EditText
            }
        }
    });

     OR 

     et.setOnEditorActionListener(new OnEditorActionListener() {

        @Override
        public boolean onEditorAction(TextView v, int actionId,
                KeyEvent event) {
            // TODO Auto-generated method stub

            if (actionId == EditorInfo.IME_ACTION_DONE) {
                 //Do your validation thing here
            }
            return false; 
        }
    });
于 2013-09-26T12:48:21.530 に答える