I am looking for a way to be able to have a list of web site that when pressed thay open the link. but keep the app runing still so when the users is finished with the link he or she is still on the active page
Share
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.
You need to add an activity that inherits from WebView see Android reference, rather than say sending an intent with the full
http://which delegates to the OS who is best to handle the intent which in the default case will be the web browser for the device. If you add a WebView then you are in control and when the activty ends it should return to the original Activity.