user3154663
user3154663

Reputation: 301

Can we use one Fragment in two different Activity Class

I am really apologize. If its very basic thing in Android.

I am creating a Fragment for an Activity class and the same fragment i want to use in another activity. Is it possible to use same fragment class in different activity classes. Thanks for considering. Any kind of help will be really appreciated.

Upvotes: 2

Views: 1387

Answers (1)

FD_
FD_

Reputation: 12919

Yes, that's possible. It's one of the strengths of the Fragment pattern. I'd just like to point out you can only use the same Fragment class - not the same Fragment instance.

Upvotes: 4

Related Questions