views:

682

answers:

3

In iPhone we can create a view that has a tab bar and make it the root view of the application then use the tab bar to navigate through sub views.

what is the most close approach to this in Android?

Is it to use a Tabbed Control? but this includes using just one activity.

what is the approach to use in Android to create an activity with a navigation control to other activities in a way similar to that of the iPhone?

+2  A: 

Sorry, I really don't know the iPhone, but may a QuickAction Dialog help you??

http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/

I imagine a list of some activities in that dialog.

I hope this is close to what you want.

Profete162
+4  A: 

There's a tutorial for creating a "Tab Layout" on the android dev site:

You can implement your tab content in one of two ways: use the tabs to swap Views within the same Activity, or use the tabs to change between entirely separate activities

Tab Layout

binaryorganic