Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个以图案为背景的线性布局。现在我想在布局中添加一些位图,使背景图案通过这些位图闪耀。
在 Photoshop 中,我只需将位图的混合模式设置为叠加,仅此而已。是否也可以在android中实现这一点?
如果您使用 ImageViews 来保存您的位图,您可以在代码中设置它们的不透明度,如下所示:
iv.setAlpha([0-255]);
或者,如果位图是您可以控制的图像(例如它们是静态的而不是用户生成的),那么您可以将图像编辑为部分透明。