Hi,
imagine an app where you have to select something (e.g. a person, customer, database, or more general a context) and based on that selection a menu is presented. In a desktop version of that app the "context selection" and the "menu area" are always visible side by side because there is enough space and thus they are not implemented as activities.
Now for a mobile phone version the "context selection" and the generated menu should be shown sequential/step-by-step because of the screen size constraints. Does this mean that I have to convert the "context selection" and the menu (even if it would be a static menu) to activities because thats the cleanest way to rearrange the "UI flow" based on activities/places?
So can I say, as a rule of thumb, whenever I see areas/views in my desktop app that are displayed at the same time but may be rearranged for tablets/mobil phones I am better off using display areas/activities for them, even if the content is pretty static and the activity is a no-brainer? And only if I have content that is static and should be displayed all the time on all possible devices (or not at all on a specific device) its save to not use Activities?
Its just a question of understanding, because before thinking about a mobile phone version I thought there is no need using display areas/activities for static views like menus. But now it seems like you need them if you want to change the UI flow.
-- J.