In the modern Android development, is it advised to completely move onto fragment-like development?
To build both mobile phones and tablets apps using fragments and not do differentiate between activity-solely and activity+fragment apps?
Are there any Google Android Team’s official recommendation to completely move to “fragments” or not to completely move?
You don’t have to develop using fragments but if you want to provide the maximum number of consumers/devices with the best possible environment then you should switch to fragments. However if you really think fragments are the devils work you can stick to just Activity-based development and provide a sloppy looking UI.
As far as Googles’ feelings go, I think this sums it up-
For more info about fragment usage check it out here and for more of the design philosophy check out this post.