Android - 多次使用图像资源但仅在 1 个实例上更改 alpha

发布于 2024-09-13 19:58:39 字数 184 浏览 0 评论 0原文

我很确定我看到了一个特定的命令,但我不记得它叫什么,这意味着我无法用谷歌搜索它!

如果我有一个图像资源,例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你げ笑在眉眼 2024-09-20 19:58:39

看一下 Drawable.mutate()

这是我使用过的代码示例。我认为这是自我描述的。

Drawable icon = context.getResources().getDrawable(R.drawable.actions_icon);

iconView.setImageDrawable(icon);        

if (action.isNew()) {
    icon.setAlpha(50);
}
else {
    icon.setAlpha(255);
}

您还可以阅读有关 Drawable 突变的文章

希望这会有所帮助!

Take a look at Drawable.mutate().

Here is a code example that I've used. I think it is self-descriptive.

Drawable icon = context.getResources().getDrawable(R.drawable.actions_icon);

iconView.setImageDrawable(icon);        

if (action.isNew()) {
    icon.setAlpha(50);
}
else {
    icon.setAlpha(255);
}

You can also read an article about Drawable mutations

Hope this helps!

朦胧时间 2024-09-20 19:58:39

这也将在此代码中工作......

Paint gpaint = new Paint(Paint.ANTI_ALIAS_FLAG);
gpaint.setAlpha(whatever number you want alpha);

canvas.drawBitmap(MainMenu.dressgirl, drx,dry,gpaint);

所有其他人都可以

canvas.drawBitmap(MainMenu.dressgirl, drx,dry,null);

This will work also in this code...

Paint gpaint = new Paint(Paint.ANTI_ALIAS_FLAG);
gpaint.setAlpha(whatever number you want alpha);

canvas.drawBitmap(MainMenu.dressgirl, drx,dry,gpaint);

all others could be

canvas.drawBitmap(MainMenu.dressgirl, drx,dry,null);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文