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
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.