作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Xamarin Android 项目正在使用 RecyclerView 中显示的数据。我引用这篇文章RecyclerView并运行代码示例。并引用 Xamarin 中的图像加载组件 picasso .如何像 File imgFile = new File("/storage/emulated/0/Pictures/CameraAppDemo/myPhoto_2eb3b135-5ad5-4a17-8836-13a9eca6bbb2.jpg")
这样从移动本地路径获取图像?
最佳答案
参见 https://components.xamarin.com/view/square.picasso 资源加载
这应该根据文档工作。不要忘记申请外部存储访问权限。
var imgFile = new File("/storage/emulated/0/Pictures/CameraAppDemo/myPhoto_2eb3b135-5ad5-4a17-8836-13a9eca6bbb2.jpg")
Picasso.With(context)
.Load(imgFile)
.Into(imageView3);
关于android - Xamarin 安卓 :Load Image from Localpath On RecyclerView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39270410/
我是一名优秀的程序员,十分优秀!