Android 图库设置来自 asset 文件夹的图像
我想使用 asset 文件夹中的文件设置我的画廊的图像。
I want to set images of my gallery using files in assest folder.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想使用 asset 文件夹中的文件设置我的画廊的图像。
I want to set images of my gallery using files in assest folder.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
尝试使用资产文件夹(例如 /assets/images/myimage.jpg)执行以下操作。
还想,如果您使用 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
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