How can I go to the previous page from Current Page?
For Instance:
First User Clicks Music Page, it invokes a WebView which displays the Music URL & then the User Clicks Back button, at that time previous page(i.e. Music Page) must be displayed.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What you are describing in the default functionality. If you put the WebView into a new activity, then you can call
startActivityfrom 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.