Alin
Alin

Reputation: 1228

Move code from Fragments into MainActivity

I have 5 Fragments with basically the same code except for the onCreateLoader override. Is there a way to move the code that all my fragments share inside the Main Activity ?

Upvotes: 0

Views: 27

Answers (1)

shmakova
shmakova

Reputation: 6426

Create BaseFragment which will contain your common code. After that extend your fragments from BaseFragment like this:

public class MyFragment extends BaseFragment

Upvotes: 1

Related Questions