It is pretty simple. You should use custom Chrome tabs as suggested by Gergely, as well as in the comments. Below is a little functional code to help you achieve this.
First add this dependency to your build.gradle (Module: app)
compile 'com.android.support:customtabs:23.4.0'
Second, add the function below to your code and just pass it the string URL.
private void redirectUsingCustomTab(String url) { Uri uri = Uri.parse(url); CustomTabsIntent.Builder intentBuilder = new CustomTabsIntent.Builder();
Rest, it takes care of itself. Since custom Chrome tabs can be customized so that you can do as you can add a menu to the toolbar. For more information, you can visit the official documentation from Google itself here .
Hope this helps you get started with :)
source share