1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-01 17:38:41 +00:00

Add core.open_url() to main menu API (#8592)

This commit is contained in:
rubenwardy 2020-05-17 19:09:10 +01:00 committed by GitHub
parent c1ce4be756
commit a9c3a42323
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 98 additions and 96 deletions

View file

@ -22,6 +22,7 @@ package net.minetest.minetest;
import android.app.NativeActivity;
import android.content.Intent;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
import android.view.View;
@ -117,4 +118,9 @@ public class GameActivity extends NativeActivity {
public int getDisplayWidth() {
return getResources().getDisplayMetrics().widthPixels;
}
public void openURL(String url) {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(browserIntent);
}
}