mirror of
https://github.com/2009scape/2009Scape-mobile.git
synced 2025-12-11 17:10:13 -07:00
17 lines
497 B
Java
17 lines
497 B
Java
package net.kdt.pojavlaunch;
|
|
|
|
import android.content.*;
|
|
import android.net.*;
|
|
import androidx.browser.customtabs.*;
|
|
// 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));
|
|
}
|
|
}
|