b1.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
Uri uri = Uri.parse("android.resource://haydo.kufurbaz.kfrbazhaydosesleri/raw/aaaww.mp3");
Intent myınIntent = new Intent(Intent.ACTION_SEND);
myınIntent.setType("audio/*");
String sharebody = "Your body here";
myınIntent.putExtra(Intent.EXTRA_STREAM,uri);
startActivity(Intent.createChooser(myınIntent,"Share using"));
return true;
}
});
When I choose to share it on GMail, for example, it says something like "Failed to attach empty file". Looks like I'm not getting the right file path, so I'm basically sharing nothing. What am I doing wrong?
Any help would be much appreciated.