user
user

Reputation: 2009

How to use dynamic fragments in android?

I have a list of data in left side. I need to show the details in right side by creating new activity depending on the selection in the left side data.

For each and every item in the list in the left side I need to show the details in a separate activity.

How to achieve this?

Upvotes: 2

Views: 329

Answers (1)

Steve Benett
Steve Benett

Reputation: 12933

What you need is called Master-Detail-Flow. There is a template available in Eclipse if you set up your project. The tutorial in the link is explaining it in detail.

enter image description here

To use it you should have a look at Fragments.

Upvotes: 2

Related Questions