Android Mp3 File Download
hello friends I need to download mp3 file from the internet and to store it into the assets folder and also it must be played into the media player. How can i do it?
Solution 1:
- Downloading a file, see here.
- Storeing to asset folder: not possible, you cannot modify your resources or assets after compile time. Store the file to the sdcard, see here.
- Use
MediaPlayer
to launch the file.
Post a Comment for "Android Mp3 File Download"