如何检索 ImageView 的 ImageUri?
我期待从 ImageView 访问当前图像的 Uri 的方法,将其保存到我的数据库中,但我只找到了 setter。
吸气剂在哪里??
I'm looking forward the method for accessing the current image's Uri from an ImageView, to save it to my database, but i've only found the setter.
Where's the getter??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有吸气剂。由于您是调用
setImageURI()
的人,因此在调用该方法时将Uri
保存到数据库中。请记住,
ImageViews
并不总是具有Uri
(例如,可绘制资源、生成的位图),这就是没有 getter 的原因。There is no getter. Since you are the one calling
setImageURI()
, save theUri
to your database when you call that method.Bear in mind that
ImageViews
do not always have aUri
(e.g., drawable resource, generated bitmap), which is why there is no getter.