Re: [android-developers] Re: Activity inside TabActivity doesn't work properly

2011-02-19 Thread Dianne Hackborn
Contacts is implemented like this. At least it was a while ago, I don't know if that is still the case. Still, yes, embedded activities it pretty cruddy. One of the goals of Fragment is to provide a better solution to replace it. (For some perspective on where embedded activities came from --

Re: [android-developers] Re: Activity inside TabActivity doesn't work properly

2011-02-19 Thread Justin Anderson
I have yet to hear of an example where someone was able to successfully put activities inside a TabActivity. Why it is allowed I'm not sure... The most success comes from having a single activity and having each tab be a different View... On Sat, Feb 19, 2011 at 8:51 AM, Kwok Chun Wing, Edwin wro

Re: [android-developers] Re: Activity inside TabActivity doesn't work properly

2011-02-19 Thread Kwok Chun Wing, Edwin
Should I put the onActivityResult in TabActivity instead of A activity? I really need them in the activity but I just want to put the acitivity inside a tab, so that I got problem. On Saturday, February 19, 2011 07:54 PM, Zsolt Vasvari wrote: There are quite a few things wrong with Activities