Search code examples
androidfiledownloadwebviewmp3

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.
    2. Storeing to asset folder: not possible, you cannot modify your resources or assets after compile time. Store the file to the sdcard, see here.
    3. Use MediaPlayer to launch the file.