I have 3 views that infl contents of recycler view. I put all of them extending from a BaseActivity.java
to have some common functions like NavigationView (Sidebar) and also the Toolbar.
Now, I wanted to make use of a TabLayout
and obligatorily I have to use fragment, so I understood. Can I just fragment
of these view past the layout?
My question is if you can encapsulate a Acitivity
+ Layout
into fragment
.