This is my code:
peroperoperopero.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Intent compartirAudio = new Intent(android.content.Intent.ACTION_SEND);
compartirAudio.setType("com.whatsapp");
compartirAudio.setType("audio/mp3");
compartirAudio.putExtra(Intent.EXTRA_STREAM,
Uri.parse("android.resource://com.example.lucas.botoneradeteloresumoasinomas/" + R.raw.peroperopero));
startActivity(Intent.createChooser(compartirAudio, "Compartir vía"));
return false;
}
});
I keep pressing the button I get the menu to share, I share it in a WhatsApp group and send a file of document type that weighs 50kb and can not be opened with anything, that I have to change or add to work ? thank you very much.