音楽プレーヤーを起動しようとしています。起動してすぐに最初の曲の再生を開始します。インテントを使用していますが、機能しません...「インテントを処理するアクティビティが見つかりません」と表示されます。
Intent intent = new Intent(android.content.Intent.ACTION_VIEW);
//"songsList" is an array with paths of all the songs in the sdcard
Uri uri = Uri.parse(songsList.get(0));
String type = "audio/mp3";
intent.setDataAndType(uri, type);
startActivity(intent);