views:

364

answers:

0

Is there an intent to play the whole playlist or album in android player?

As for an album, it is possible to browse songs using ACTION_PICK:

Intent intent = new Intent(Intent.ACTION_PICK);
intent.setDataAndType(Uri.EMPTY, "vnd.android.cursor.dir/track");
intent.putExtra("album", id);
activity.startActivity(intent);

However replacing ACTION_PICK with ACTION_VIEW results in the exception:

android.content.ActivityNotFoundException: No Activity found to handle Intent act=android.intent.action.VIEW dat= typ=vnd.android.cursor.dir/track (has extras) }

Thank you for your answers.