My application consists of tabs using Tabhost and Activity group. It is working well for now. However, I am told to extend the app to support tablet. The current app seems to work in tablet, with less space utilization. I am told to use split views in few screens.
As a result, I made a rigorous study on extending the design. One proposal is to use fragments. This eventually necessitates a major design change and consumes more time. The other one is to tweak the existing code to extend support which is far less recommended.
The app is aimed to support all Android versions above 2.2
Could anyone guide me a better solution?
EDIT:
I am already using new layout naming conventions.
layout-sw600dp
layout-sw800dp
For current smartphone version, say for instance, a screen has list view as
Item A
Item B
Item C
Tapping any item opens a new activity in the activity group showing the details.
But in tablet, the above two features are brought to a single layout using split view.
Item A |
Item B | Item details
Item C |
I am stuck with implementing the above feature. Can I use fragments inside ActivityGroup?