英文:
download needed files to aplication android
问题
我是Android Studio的初学者,最近制作了我的第一个应用程序,我放置了许多原始资源文件(txt、mp3),这就是为什么它的大小很大(约200兆字节)。
我想允许用户下载他们需要的内容,以便享受我的服务,比如听mp3或阅读文本。
英文:
I'm a beginner in android atudio, I recently make my first app, I put in many raw resources file(txt,mp3) that is why it's size is big (~200Mo).
I want to allow user to download what he need in order to benefit my service like listen to mp3 read text.
答案1
得分: 1
你应该仔细考虑为什么你的应用需要这么多数据,删除所有不必要的部分,将你真正需要的内容放入.apk作为资源。
如果我发现某个应用正在下载200MB到我的手机,我会立即卸载它。
英文:
You should carefully consider why you need this much data in your app, remove all unnecessary parts and put everything you really need into the .apk as resource.
If I find some app is downloading 200MB to my phone, I'll uninstall that immediately.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论