动态显示资源/可绘制图像
我在 res/drawable
文件夹中几乎没有图像。我有一个 SQLite 数据库。我有一个 GridView ,在其中显示所有图像。我选择一个图像并获取所选图像的相应 URI
。 现在,当我选择图像时,URI
将显示在 EditText
中。然后我将该消息与图像一起提交。在 ListView
中,我显示该消息以及来自 WebService
的所有消息。
- 我需要在
EditText
中显示相应的图像而不是URI
。 - 我需要将 EditText 中的图像显示到 Listview 中,在其中显示来自
WebService
的整个消息列表。
我需要在 EditText
中提交消息,并从 WebService
取回相同的消息以及图像。
我怎样才能做到这一点?
我已经完成,直到从本地DB
获取所选图像的相应URI
。现在我需要获取图像而不是 URI
。
请指导我解决这个问题。
谢谢&问候, 拉加夫
I have few images in res/drawable
folder. I have a SQLite
DB. I have a GridView
where I display all the images. I select a image and fetch corresponding URI
of the image selected.
Now when I select the image the URI
is displayed in EditText
. Then I submit that message along with image. In ListView
I display the message along with all the messages from WebService
.
- I need to display the corresponding image instead of
URI
inEditText
. - I need to display image from EditText into Listview where i display the entire list of messages from
WebService
.
I need to submit the message in EditText
and fetch back the same message from WebService
along with image.
How can I achieve that?
I have done till getting the corresponding URI
of the selected image from local DB
. Now i need to get the image instead of URI
.
please guide me in solving this problem.
Thanks & Regards,
Raghav
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
编辑文本仅用于文本输入。
您没有显示图像的灵活性。
但是,如果您有可用的数据,您可以尝试
editText.setText(Html.fromHtml(stirng));
但是,如果图像是远程的,那么您将得到一个盒子..并且我不知道如何从资源加载它。
Edit Text is for text input only.
You do not have the flexibility of showing an image.
How ever, if you have the data available with you you can try
editText.setText(Html.fromHtml(stirng));
However, if the image is remote then you will get a box.. and I don't have info how to load it from resources.