是否可以将默认搜索引擎从Google.com更改为其他编程方式的Android浏览器

时间:2013-09-10 13:13:33

标签: android android-webview android-preferences android-browser android-permissions

我需要以编程方式将默认搜索引擎从Google.com更改为其他的安卓搜索引擎,或者是否可以在Android中更改默认浏览器的主页?

OR

从我的应用程序中以编程方式获取默认浏览器的主页URL是否可行

2 个答案:

答案 0 :(得分:1)

看起来没有直接的方法。如何使用ACTION_VIEW发送打开特定搜索引擎的意图。

String url = "http://www.yahoo.com";
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);

另请查看此问题:Android: change default Home Application。它可能会提供一些见解

答案 1 :(得分:0)

对不起,但是我不能这样做。请仔细阅读this我认为它可能会对您有所帮助。