I am having an issue with tabs, and I figure someone will know how this works. Basically I am trying to pass data between tabs in an app, but I am not sure how to do this. I had it set up before where a button would change the activity, but when I moved it to a tabbed view, I lost a way to pass the info through intents like I was doing before. Basically my set up now is:
- A TabActivity to switch between my other 2 activities
- 2 list activities being connected by the tab activity
It would be awesome if I could somehow pass the info through intents still, but I am not sure if that can work, it would also work if somehow in one of the activities I could access the sharedpreferences from the other. Is there anyway to do either of these? Thanks in advance.
WWaldo