2009Scape-mobile/app_pojavlauncher/src/main/java/net/kdt/pojavlaunch/CustomTabs.java
2021-02-04 14:57:59 +01:00

16 lines
456 B
Java

package net.kdt.pojavlaunch;
import android.content.*;
import android.net.*;
import androidx.browser.customtabs.*;
public class CustomTabs {
public static void openTab(Context context, String url) {
CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder();
builder.setShowTitle(true);
CustomTabsIntent customTabsIntent = builder.build();
customTabsIntent.launchUrl(context, Uri.parse(url));
}
}