我們可以將Google Chrome設置爲默認瀏覽器嗎?因爲我知道,在Android 4.2中,他們不再是Android中的通用瀏覽器,而是將其更改爲Google Chrome。就像下面的代碼一樣。如何將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設置爲默認值? 在此先感謝。 :)
否。想象一下安全問題,如果應用程序可以更改默認設置? – Simon