Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my project I have a EditText. I want to show how many 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){}
    }); 
share|improve this question

2 Answers

up vote 35 down vote accepted

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

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

... use ...

s.length()
share|improve this answer

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));
share|improve this answer
2  
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 – SiGanteng 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 – SiGanteng Nov 30 '10 at 5:18
show 1 more comment

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.