tags:

views:

50

answers:

1

Hai All,

Can anyone help me, how to go the previous page from Current Page.

For Instance:

First User Clicks Music Page it invokes a WebView wich displays the Music Url & then the User Clicks Back button, At that time previous page(ie Music Page) must be dispalyed.

Thanks in Advance,

Tilsan

+1  A: 

What you are describing in the default functionality. If you put the WebView into a new activity, then you can call startActivity from the "main page" activity to start the "music page" activity. When the user pushes the back button, it will automatically return to the main page.

Richard Szalay