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

I am using tabs in my application . Each tab is pointing to 3 different activities.

    TabHost host=getTabHost();
    host.addTab(host.newTabSpec("one")
.setIndicator("Register")
.setContent(new Intent(this, Register.class)));
host.addTab(host.newTabSpec("two")
.setIndicator("View")
.setContent(new Intent(this, View.class)));
host.addTab(host.newTabSpec("three")
.setIndicator("Summary")
.setContent(new Intent(this, Summary.class)));

There is a textview result in View class which i am setting after a button click. My question is when i am switching to another tab and coming back to that tab(View) textview result is still set i want it to be blank , when i switch between tabs. Can any one help me out in this.

Thanks

share|improve this question

2 Answers

up vote 1 down vote accepted

Try overriding onResume() of your tab activity. You can reset textview to blank there.

share|improve this answer
Thanks it worked.. – XYZ Oct 14 '11 at 9:44
Glad to hear this.please accept this answer then. – Hiral Oct 14 '11 at 9:45
yes..wait for 2 mins..:) – XYZ Oct 14 '11 at 9:47

I'm assuming View is an Activity. If so, you just need to reset the TextView in the onResume method of the View class.

share|improve this answer
Thanks its working.. – XYZ Oct 14 '11 at 9:45

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.