Google chrome を既定のブラウザとして設定することはできますか? 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 をデフォルトとして設定するようにコードを変更することは可能ですか? 前もって感謝します。:)