我有一个Android应用程序,当应用程序打开时,它会通向我公司的网站。我总是在Android谷歌浏览器中打开它。每次我调用此代码时,都会在Google Chrome中创建一个新选项卡。有没有任何方法可以阻止创建新选项卡。用于打开Google Chrome的代码如下
Intent i = new Intent("android.intent.action.MAIN");
i.setComponent(ComponentName.unflattenFromString
("com.android.chrome/com.android.chrome.Main"));
i.addCategory("android.intent.category.LAUNCHER");
i.setData(Uri.parse("http://google.com"));
startActivity(i);
感谢您的回答
答案 0 :(得分:0)
感谢post,我终于找到了解决方案。这是代码:
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.Toast;
public class Main extends Activity {
private WebView mWebview ;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mWebview = new WebView(this);
mWebview.getSettings().setJavaScriptEnabled(true); // enable javascript
final Activity activity = this;
mWebview.setWebViewClient(new WebViewClient() {
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
Toast.makeText(activity, description, Toast.LENGTH_SHORT).show();
}
});
mWebview .loadUrl("http://www.google.com");
setContentView(mWebview );
}
}