您好我想制作一款游戏,但我需要在Webview中加载一个网页,有没有办法在场景中使用webview(比如gamescene)......或者有没有办法启动新的意图(包括Webview)在场景中? 谢谢!
答案 0 :(得分:0)
你不需要什么特别的东西!
public void openGoogleHomepage()
{
Intent intent = new Intent("android.intent.action.VIEW", Uri.parse("https://google.com"));
try {
startActivity(intent);
}
catch (Exception ex) {
//error occurred
}
}
如果您遇到问题,请尝试在UI线程中打开:
this.runOnUiThread(new Runnable() {
@Override
public void run() {
openGoogleHomepage()
}