I\'m working on an android app and I\'m fairly new to all this, including mobile app development, so I have a few questions. Any help would be amazing!
1) Is it possible
Is it possible to swipe between entire activities (including action bar)?
No you cant, you can only do it with Fragments
not with Activities
.
What is the best way to implement a master/detail type layout?
You can use fragment and just add it to the current layout. Another solution is to create a dialog that will have layout.
Is there a way to have different action bars for every fragment?
Only activity can have ActionBar
but you can still make your own ActionBar
by creating it using layout and inflate it to the fragment.