从字符串到图像的转换

发布于 2024-10-21 06:22:11 字数 258 浏览 1 评论 0原文

可能的重复:
在android中显示文件路径中的图像视图?

这里是图像路径存储为字符串我想将字符串转换为图像并且需要在模拟器中查看图像这怎么可能?请告诉我

谢谢

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 技术交流群。

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

发布评论

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

评论(3

吃不饱 2024-10-28 06:22:11

使用 ImageView 并将字符串添加为资源。

Use an ImageView and add your string as an resource.

伴梦长久 2024-10-28 06:22:11
Bitmap bm = BitmapFactory.decodeFile(mImagePath);
ImageView image = (ImageView) findViewById(R.id.image_view);
image.setImageBitmap(bm);

假设 mImagePath 是包含您的路径的字符串,而 R.id.image_view 是布局中 ImageView 的 ID。

祝你好运!

Bitmap bm = BitmapFactory.decodeFile(mImagePath);
ImageView image = (ImageView) findViewById(R.id.image_view);
image.setImageBitmap(bm);

Assuming mImagePath is a string that contains your path and R.id.image_view is the ID of an ImageView in your layout.

Good luck!

风透绣罗衣 2024-10-28 06:22:11

这个答案可能会有所帮助。从那个答案来看:

File imgFile = new  File(“/sdcard/Images/test_image.jpg”);
if(imgFile.exists()){
    Bitmap myBitmap = BitmapFactory.decodeFile(imgFile);
    ImageView myImage = (ImageView) findViewById(R.id.imageviewTest);
    myImage.setImageBitmap(myBitmap);
}

This answer might help. From that answer:

File imgFile = new  File(“/sdcard/Images/test_image.jpg”);
if(imgFile.exists()){
    Bitmap myBitmap = BitmapFactory.decodeFile(imgFile);
    ImageView myImage = (ImageView) findViewById(R.id.imageviewTest);
    myImage.setImageBitmap(myBitmap);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文