gpt4 book ai didi

android - 如何调用非默认浏览器?

转载 作者:行者123 更新时间:2023-11-29 21:22:13 25 4
gpt4 key购买 nike

我在这里在 android 中创建应用程序,我想调用浏览器而不是默认浏览器,而是特定浏览器,如 opera 或其他浏览器......坦率地说,这些浏览器比默认浏览器更好,并且有更多选项..

我在谷歌上搜索了很多,但我只能调用默认浏览器。

这里是调用默认浏览器的代码

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.co.in"));

startActivity(intent);

有什么建议...

最佳答案

使用WebView,例如,在 xml 中,

<?xml version="1.0" encoding="utf-8"?>
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>

在Java中

public class WebViewActivity extends Activity {

private WebView webView;

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);

webView = (WebView) findViewById(R.id.webView1);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("http://www.google.com");

}

}

在 list 文件中:

<uses-permission android:name="android.permission.INTERNET" />

关于android - 如何调用非默认浏览器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20603936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com