Ehsan
Ehsan

Reputation: 2781

How to share one view between two activities?

I have 2 activities in my application and I have a RecyclerView that should be in both of them.

Is there any way to share this RecyclerView with these activities or I have to define this RecyclerView in both of them separately? (I don't want to use fragments in this app)

Thank you for your answer.

Upvotes: 0

Views: 469

Answers (1)

Anshuman Rohella
Anshuman Rohella

Reputation: 105

You could probably create a 'base' activity and share the layout between the two activities by extending it and use setContentView . You can read more about this here

Upvotes: 2

Related Questions