2

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?

Vladimir Ivanov
  • 42,730
  • 18
  • 77
  • 103
Android
  • 8,995
  • 9
  • 67
  • 108

1 Answers1

8
  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.
Community
  • 1
  • 1
Vladimir Ivanov
  • 42,730
  • 18
  • 77
  • 103