I'm having trouble creating a simple app, I created a variable that changes when you click a button, but I would like to know how to set my TextView to that variable.

total is my TextView, and count is my variable.

I am trying total.setText(count);

I dont know how to tell it to just take the value of count and set the text to that.

Any help would be greatly appreciated.

link|improve this question
feedback

4 Answers

First, you need to give your TextView an ID in the layout file:

<TextView
    <!-- existing code -->
    android:id="@+id/total">
</TextView>

Then use something like this to get the instance of the TextView and set the text:

TextView total = (TextView) findViewById(R.id.total);
total.setText(Integer.toString(count));
link|improve this answer
feedback

Use:

total.setText(String.valueOf(count));
link|improve this answer
feedback

Assuming count is an int, and your TextView is an instance of android.widget.TextView:

total.setText(Integer.toString(count));

setText() takes an argument of type CharSequence and so an int needs to be converted to an object type that implements the CharSequence interface. String is the obvious choice.

link|improve this answer
I have an error on 'parseInt' The method parseInt(String) in the type Integer is not applicable for the arguments (int) – user888712 Aug 15 '11 at 1:43
Whoops. I meant toString(), not parseInt(). Updated. Try again, please. – Asaph Aug 15 '11 at 1:45
toString() works perfectly. Thank you so much, this was giving me alot of trouble. – user888712 Aug 15 '11 at 1:47
@user888712: No problem. If you wouldn't mind, please upvote and mark my answer correct by clicking the checkbox to the left of the answer. – Asaph Aug 15 '11 at 1:48
Why downvote!? Why so much hate!? Cheers. – Nikola Despotoski Aug 15 '11 at 1:49
show 1 more comment
feedback

Huuummmm

total.setText(String.valueOf(count));

That should do it.

link|improve this answer
How come the post isn't helpful? If it isn't can you post why? – Carlos Silva Aug 15 '11 at 1:44
I didn't downvote you, but String has no parseInt() method. And even if it did, I imagine that would return an int, which setText() will not accept. – Asaph Aug 15 '11 at 1:47
There, just fixed it. – Carlos Silva Aug 15 '11 at 1:48
feedback

Your Answer

 
or
required, but never shown

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