在 Android 应用程序的 JSON 中包含小图像
我的应用程序当前从我的服务器请求一个包含一些文本和其他数据的 JSON 文件。我想添加功能,以便它还可以通过同一文件下载非常小的图像(如图标)[无需创建额外的请求]。是否可以这样做,我将如何去做(base64?)
My app currently requests a JSON file with some text and other data from my server. I want to add functionality so that it also downloads a very small image (like an icon) through the same file [without creating an additional request]. Is it possible to do so, and how would I go about it (base64?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该非常合理:看看 http://developer.android.com/reference/ android/util/Base64.html。您需要做的就是:
瞧!您有一个可以使用的位图。
让我知道结果如何。
Should be eminently reasonable: look at http://developer.android.com/reference/android/util/Base64.html. All you'd need to do is:
Voila! You have a Bitmap you can use.
Let me know how that works out.