J'ai une vue de recyclage du fichier audio, Le fichier audio est stocké dans le dossier brut. Maintenant, je veux partager mon fichier audio avec d'autres applications. J'essaie ce code dans l'adaptateur clss.
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(
"android.resource://"+ context.getPackageName()+"/raw/"
+ songs[getAdapterPosition()]));
shareIntent.setType("audio/mp3");
context.startActivity(shareIntent);
Mais cela ne fonctionne pas. Comment résoudre ce problème.
Merci d'avance.