How Fragments affect the Activity “single, focused thing that the user can do” principle?
As Android documentation states: "An activity is a single, focused thing that the user can do." However with Fragments we will be able to do many "things" within the same Activity as Reto Meier suggest . His suggestion is to replace a selection fragment by a content fragment within the same Activity (section "Within our code this produces a dilemma"). Lets say my application is a "bit" more complex, with many activities, with a complex navigation tree and designed with the "single, focused thing that the user can do" principle in mind. Lets say now I have to adapt it to Fragments and large