tags:

views:

18

answers:

1

I want to load an mp3 from a string path in andriod which is situated in drawable folder? Please anyone help me on this.

+1  A: 

If you put the file in your assets folder, you can easily access it using ContextWrapper#getAssets().open(fileName).

benvd