Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Im having EditText where I wanted to add letter counter it counts properly but when I entered backspace its also consider as letter and count added by 1 which actually should be decremented by 1 my code is

text_feedback_text.addTextChangedListener(new TextWatcher()
        {
            public void afterTextChanged(Editable s) 
            {
                                int keyCode = 0;
                if(keyCode==KeyEvent.KEYCODE_DEL){
                    i--;
                    Log.d("back","backspace pressed"+i);
                }else 
                    i++;
                text_feedback_count.setText(String.valueOf(i) + " / " + String.valueOf(charCounts));
            }
            public void beforeTextChanged(CharSequence s, int start, int count, int after){}
            public void onTextChanged(CharSequence s, int start, int before, int count)
            {
                text_feedback_count.setText(String.valueOf(s.length()));
            }
        } 
        );

Please help me out when i clicking backspace its not detecting and also not printing on logcat

Please reply if anybody have some clue

Thank you

share|improve this question
4  
1. TextWatcher is for watching text. 2. seems like you do not understand your own code : you assing 0 to keyCode int keyCode = 0; and then compare it to KeyEvent.KEYCODE_DEL ... i'm pretty sure that KeyEvent.KEYCODE_DEL != 0 ... so i--; is never called ... – Selvin Feb 27 '12 at 14:04
@Abhishek Karande also if we enter space then also TextWatcher listener not working...any help here? – Shubh Jan 12 at 11:29

1 Answer

use OnKeyListener for you editText so you can detect any key press

editText.setOnKeyListener(new OnKeyListener() {                 
    @Override
    public boolean onKey(View v, int keyCode, KeyEvent event) {
           if(keyCode == KeyEvent.KEYCODE_DEL){  
             //Control comes here when backspace is clicked
             }
    return false        
        }
});
share|improve this answer
1  
this doesn't work on all phones or all input types :( – Tony Ashworth Nov 8 '12 at 16:10
Based on what I see here, the comment above makes sense. stackoverflow.com/questions/4886858/… – loeschg Apr 23 at 21:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.