Hello can anyone tell me how to play mp3/mp4 to android default browser?
I have mp3/mp4 files in my raw folder in resources.
I have tried following code but got disregards and not working, It will open default player but didn't play the selected file.
String dataResourceDirectory = "raw";
String dataResoruceFilename = "armin";
Uri uri = Uri.parse("android.resource://" + getPackageName() + "/" + dataResourceDirectory + "/" + dataResoruceFilename);
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
File file = new File(uri);
intent.setDataAndType(Uri.fromFile(file), "audio/*");
startActivity(intent);
Can anyone please suggest?