I wanted to use Fragments for displaying different activities on one screen on a tablet, but realised that my tablet's API level is only 8 while Fragments require API level 11.
My question is thus, what was used before Fragments were introduced?
My assumption is that each activity was simply displayed on its own screen and one navigated from one activity to the next by means of the menu button, context menus and back button.
This is what I wanted to achieve using fragments: I write information about three "actions" to three different xml files. My idea was to display the three different xml files in three different fragments on the tablet's screen. The one file is information about a patient, the second file is x, y and z values received from an accelerometer and the third file is observations recorded by a therapist. I wanted to display the patient's info on the left (like a left bar), a graph showing the patient's test results on the right and below that, the therapist's observations.
Is there a way that I can display these three xml files' info on one screen of the tablet? Or am I doomed to the use of menu buttons and three different screens - one for displaying each xml file?
Comments will be appreciated.