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 working on a Tab Activity. I have one activity as a tab content of one tab. I need to use the same in another tab also.so I have set the a single activity as a two tab content. But when I am running my code . If I am selecting the TAB1 after that I am selecting TAB2. Again I coming back to TAB1. whatever event like entering name in edittext is reflecting in TAB2 not in TAB1.I don't know understand why its happening.

Any Idea? Thanks in Advance.

share|improve this question
1  
Please post some code to see how you tried to achieve your goal. – Cdr. Powell Aug 2 '12 at 9:15
1  
Code? You are using the same intent object for both tabs? Or creating two intents? – trgraglia Aug 2 '12 at 9:15
i am creating different intents. using bundle extra flag i am maintaining the tabs. – Praveen Aug 2 '12 at 9:18
you can check the beautiful example provided by android here developer.android.com/reference/android/app/TabActivity.html Here they are dealing with one activity with multiple tab – Narendra Pal Aug 2 '12 at 9:33
Nick the example you mentioned is not correct. they are using seperate activity class for each tab. – Praveen Aug 2 '12 at 9:40
show 1 more comment

1 Answer

You haven't mentioned that what you are doing onTabChanged ie. whether you are starting that activity again or not.

I think everytime when you are selecting a tab you are staring an Activity.

 startActivity(intent);

So, whatever change you have made in that activity under Tab2, won't reflect on that activity under Tab1 as you are starting that activity again.

If you are starting that activity everytime ontabchanged, then you have to save the changes what you have made under any tab.

As you haven't mentioned clearly what you are doing, so if you are doing something else, let me know.

share|improve this answer
No. i am not starting the activity on tabchanged method. i am starting two activitygroup for each tab. in that both activiy group i need to use one activity. – Praveen Aug 2 '12 at 11:20
If you are using same activity, try to check the changed value is being saved or not. I think the changed value is not saved, thats why its not reflecting. I didn't see your code, so without seeing your code its hard to comment more. – Debarati Aug 2 '12 at 11:57

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.