Android应用启动时,我必须重定向到网站。它会工作正常,但它会在应用程序启动时闪烁。以下代码我尝试了两种不同的方法:方法1使用Webview
;方法2使用URI
和Intent
。
// method 1
this.webView.loadUrl("http://www.google.com");
// method 2
Uri uri = Uri.parse("http://www.google.com/");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
intent.addCategory(Intent.CATEGORY_BROWSABLE);
startActivity(intent);
请给我解决方案。
问候
卡特桑