我们可以将谷歌浏览器设置为默认浏览器吗?因为我了解到在 android 4.2 中它们不再是 android 中的通用浏览器,所以他们将其更改为 Google Chrome。就像下面的这段代码一样。
Intent intent= new Intent();
intent.setAction("android.intent.action.VIEW");
Uri content_url = Uri.parse("http://www.eltosystem.com");
intent.setData(content_url);
intent.setClassName("com.android.browser","com.android.browser.BrowserActivity");
startActivity(intent);
我们是否可以更改代码以将 Google Chrome 设置为默认值?提前致谢。:)