动态显示资源/可绘制图像

发布于 2024-12-05 08:45:23 字数 660 浏览 1 评论 0原文

我在 res/drawable 文件夹中几乎没有图像。我有一个 SQLite 数据库。我有一个 GridView ,在其中显示所有图像。我选择一个图像并获取所选图像的相应 URI。 现在,当我选择图像时,URI 将显示在 EditText 中。然后我将该消息与图像一起提交。在 ListView 中,我显示该消息以及来自 WebService 的所有消息。

  1. 我需要在 EditText 中显示相应的图像而不是 URI
  2. 我需要将 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.

  1. I need to display the corresponding image instead of URI in EditText.
  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鱼忆七猫命九 2024-12-12 08:45:23

编辑文本仅用于文本输入。

您没有显示图像的灵活性。

但是,如果您有可用的数据,您可以尝试

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文