I have 5 complex Fragments for each Navigation menu click. However, I am not sure if I should use activities instead of fragments, because all my fragments are quite complex and expensive.
Since they are all fragments, they are also running on ONE Activity.
My question now is, would I benefit from using activities instead of fragments ?
I do know the differences of Fragments, activities. I'm just not sure if I should store all the complex fragments in one activity, or just use multiple activities instead of fragments in a navigationdrawer. I'm scared that all the fragments will consume too much ressources
Thanks a lot.