从overlayitem中检索drawable
有什么聪明的方法可以从 OverlayItem
中检索 Drawable
吗?
我想在设置新的 Drawable
之前存储 OverlayItem
的 Drawable
,以便之后能够恢复,但我不能找到任何实际检索当前 Drawable
的方法。
Is there any clever way of retrieving the Drawable
from an OverlayItem
?
I want to store the Drawable
of an OverlayItem
before setting a new Drawable
on it, to be able to revert afterwards, but I can't find any way of actually retrieving the current Drawable
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是首先定义
Drawable
的人。在设置或更改它时记下它是什么。最有可能的是,您需要为此创建自己的OverlayItem
子类。You are the one defining the
Drawable
in the first place. Make note of what it is at the time you set it up or change it. Most likely, you will need to create your own subclass ofOverlayItem
for this.