从字符串到图像的转换
Possible Duplicate:
Show Image View from file path in android?
here image path is stored as string i want convert the string to image and need to view the image in emulator how is this possible? please tell me
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 ImageView 并将字符串添加为资源。
Use an ImageView and add your string as an resource.
假设 mImagePath 是包含您的路径的字符串,而 R.id.image_view 是布局中 ImageView 的 ID。
祝你好运!
Assuming
mImagePath
is a string that contains your path andR.id.image_view
is the ID of an ImageView in your layout.Good luck!
这个答案可能会有所帮助。从那个答案来看:
This answer might help. From that answer: