RayanFar
RayanFar

Reputation: 587

how can i play a mp3 file from raw in a simple player in android?

how can I play a mp3 file from Resources/raw in a simple player in android ? like in file preview in default file manger in android

please help me

Upvotes: 0

Views: 84

Answers (1)

MadEqua
MadEqua

Reputation: 1142

You can use a MediaPlayer like this (called inside an Activity):

MediaPlayer mp = MediaPlayer.create(this, R.raw.mp3file);
mp.start();

Upvotes: 1

Related Questions