In my project I have a EditText. I want to show how mant characters are there in the EditText and show it in the TextView. I have written following code and it works fine. However, my problem is when I click Backspace it counts up. I need to decrement the number. What should I do? How can I take Backspace Key?

    tv = (TextView)findViewById(R.id.charCounts);
    textMessage = (EditText)findViewById(R.id.textMessage);
    textMessage.addTextChangedListener(new TextWatcher(){
        public void afterTextChanged(Editable s) {
            i++;
            tv.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){}
    }); 
link|improve this question

feedback

2 Answers

up vote 17 down vote accepted

Andreas is mostly right, but don't use...

textMessage.getText().toString().length()

... use ...

s.length()
link|improve this answer
feedback

how about just getting the length of char in your EditText and display it?

something along the line of

tv.setText(s.length() + " / " + String.valueOf(charCounts));
link|improve this answer
1  
Oh, my god. you are right. This was so stupid question :( Thanks man – Hesam Nov 30 '10 at 4:31
1  
Would appreciate it if you click on the V button below the vote count :p – NiftyDude Nov 30 '10 at 4:32
1  
yes but I have to wait for 8 min. after that I can. – Hesam Nov 30 '10 at 4:33
3  
It's even easier than that -- you can just call textMessage.length(), no need to do getText().toString(). developer.android.com/reference/android/widget/…() – Yoni Samlan Nov 30 '10 at 4:40
1  
there goes my accept :(, thank's though for the new knowledge I can use as well :D – NiftyDude Nov 30 '10 at 5:18
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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