Hi, In my application I am adding activity group in my Tab content to open new activities in same tab. And in onKey handling inside tab child activity calling popView() method of activity group witch is having track of all child activities of that tab. This case is working fine if tab child activity having focus but in case if child activity doesn't have focus its calling finish of tab activity instead of tab child activity.
Lets say 'T' is Tab activity which is having 2 tabs 'T1' and 'T2'. and 'T1' having 'A1' activity group which is starting activity 'Ac1' - > 'Ac2' for setContentView(). If 'Ac2' doesn't have any focus and press back key then its finishing Tab activity 'T' instead of giving call back to 'Ac1' finishFromChildActivity() method. It should call finish of 'Ac2' instead of finish of Tab 'T' as calling if activity 'Ac2' having focus on any view component. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

