3

Can u please suggest a good tutorial (with example) for ActivityGroup. I am completely new about this topic.

Thank you

Jomia
  • 3,414
  • 10
  • 46
  • 63

1 Answers1

5

Are you trying to extend ActivityGroup in your project with specific requirements? Here is a tutorial with a TabActivity and ActivityGroup.

Jeff Atwood
  • 63,320
  • 48
  • 150
  • 153
indyfromoz
  • 4,045
  • 26
  • 24
  • Here is another [example](http://united-coders.com/nico-heid/use-android-activitygroup-within-tabhost-to-show-different-activity) – Dominik Mohr Aug 30 '11 at 14:24
  • the link of the tutorial is broken! the example is fine – vallllll Sep 19 '11 at 10:35
  • hey do any of you know if this is an issue for new Android OS? I saw that ActivityGroups are now deprecated. – MikeIsrael Jan 12 '12 at 13:57
  • @MikeIsrael It's depreciated in favour of Fragment and FragmentManager. – Andrew Weir Apr 20 '12 at 08:25
  • @AndrewWeir does that mean utilizing them instead of fragments will cause issues? I know sometimes deprecated methods will cause programs to crash. – MikeIsrael Apr 21 '12 at 17:42
  • @Mikelsrael It shouldn't cause them to crash, no. I'm currently building an app using ActivityGroups and debugging it on ICS. It just means as time goes on, the code will become less supported and for new versions of Android, you may see more unpredictable behaviour. – Andrew Weir Apr 23 '12 at 10:28