Android - 多次使用图像资源但仅在 1 个实例上更改 alpha
我很确定我看到了一个特定的命令,但我不记得它叫什么,这意味着我无法用谷歌搜索它!
如果我有一个图像资源,例如 R.drawable.myimage ,它在 Linearview 中使用了不止一次,并且我想更改该图像的一次出现的 alpha,(通常,更改 alpha 会更改所有出现的该图像),我应该使用什么命令来“取消链接”该图像的更改。
I'm pretty sure I saw a specific command for this, but I can't remember what it's called, which means I can't Google it!
If I have an image resource, e.g. R.drawable.myimage , which gets used in a Linearview more than once and I want to change the alpha on just a single occurrence of that image, (normally, changing the alpha changes all the occurrences of that image), what command do I use to 'unlink' the changes of that image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下
Drawable.mutate()
。这是我使用过的代码示例。我认为这是自我描述的。
您还可以阅读有关 Drawable 突变的文章
希望这会有所帮助!
Take a look at
Drawable.mutate()
.Here is a code example that I've used. I think it is self-descriptive.
You can also read an article about Drawable mutations
Hope this helps!
这也将在此代码中工作......
所有其他人都可以
This will work also in this code...
all others could be