Store content in android market
Can I upload content(any type png/jpg) onto android market, which I 开发者_StackOverflowcould download while the application is running.
No, you can only upload Application .apk
files on to the Market.
If you don't have much content you can embed it in your application as a Resource
. The content is then embedded into the .apk
file and you can retrieve it using a standard Android API.
If you have lot of content - say, many megabytes - which you would rather download and perhaps cache on the SD card you'll need your own website.
You can also add it to /res/drawable
and use it without the need of downloading.
精彩评论