Android 图库设置来自 asset 文件夹的图像

发布于 2024-10-10 19:22:48 字数 35 浏览 2 评论 0原文

我想使用 asset 文件夹中的文件设置我的画廊的图像。

I want to set images of my gallery using files in assest folder.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

倾城泪 2024-10-17 19:22:48

尝试使用资产文件夹(例如 /assets/images/myimage.jpg)执行以下操作。

String imagePath =  "images/myimage.jpg"

Bitmap bmp = null;
try{
   InputStream is = getAssets().open(imagePath);        
   bmp = BitmapFactory.decodeStream(is);
}
catch(Exception exception)
{
    bmp = BitmapFactory.decodeResource(getResources(), R.drawable.icon_grey_box);
}
((ImageView)findViewById(R.id.myimage)).setScaleType(ImageView.ScaleType.CENTER_CROP);
((ImageView)findViewById(R.id.myimage)).setImageBitmap(bmp);

还想,如果您使用 GalleryView,并且有数据提供程序,那么您可能可以使用

file://mnt/sdcard/imageassets 格式化图像路径/

我认为还有一种方法可以使用 URI 路径访问您的 apk 资源文件夹,类似于

“android.resource://[package]/[res id]”

这很好地解释了这一点。

http://androidbook.blogspot.com/2009/08 /referring-to-android-resources-using.html

Try the following with an assets folder such as /assets/images/myimage.jpg

String imagePath =  "images/myimage.jpg"

Bitmap bmp = null;
try{
   InputStream is = getAssets().open(imagePath);        
   bmp = BitmapFactory.decodeStream(is);
}
catch(Exception exception)
{
    bmp = BitmapFactory.decodeResource(getResources(), R.drawable.icon_grey_box);
}
((ImageView)findViewById(R.id.myimage)).setScaleType(ImageView.ScaleType.CENTER_CROP);
((ImageView)findViewById(R.id.myimage)).setImageBitmap(bmp);

Just also thought, if your using GalleryView, and have a dataprovider then you might be able to format the image paths using

file://mnt/sdcard/imageassets/

I think there is also a way to access your apk assets folder, using a URI path, similar to

"android.resource://[package]/[res id]"

This explains it well.

http://androidbook.blogspot.com/2009/08/referring-to-android-resources-using.html

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