在我的應用程序做ACTION_WEB_SEARCH無法進行
Uri webAddress = Uri.parse("http://www.nrk.no");
Intent webIntent = new Intent(Intent.ACTION_WEB_SEARCH, webAddress);
String title = "Choose an app";
Intent chooserIntent = Intent.createChooser(webIntent, title);
startActivity(chooserIntent);
但是,彈出打開選擇說No apps can perform this action
。我究竟做錯了什麼?
編輯:更改爲ACTION_VIEW使它工作,爲什麼?
您在哪裏測試此代碼?在模擬器還是真實設備? – donfuxx
真實設備(安裝了3個瀏覽器的Galaxy S4) – chwi