首页 > 学院 > 开发设计 > 正文

getBackground().setAlpha导致其他布局背景透明度都改变的问题

2019-11-08 00:20:38
字体:
来源:转载
供稿:网友

记得之前做的项目中遇到个奇怪的问题,页面中设置了白色背景,但运行起来的效果却是灰色,并且每个手机的效果都不一样,起初以为是适配的问题,最后几经波折终于确定了问题所在,是因为在项目中使用了view.getBackground().setAlpha(); 导致其他布局背景透明度都跟着改变 实际效果 自己写了个demo测试下问题,以便分享 这里写图片描述 使用getBackground().setAlpha() 改变textview1的透明度 结果text2透明度也跟着改变,所以此方法会导致应用内其他页面的 textview背景透明度跟着改变,

两个textview,background都指向相同的资源,那如果text1.getBackground().setAlpha(255)(不透明),那text2的背景是不是也跟着变成不透明的呢,答案是yes,那为什么呢:默认情况下,所有的从同一资源(R.drawable.*等等)加载的实例都共享一个共用的状态,如果你更改一个实例的状态,其余的实例都会接收到相同的通知。

那么该问题该如何解决呢?

/** * Make this drawable mutable. This Operation cannot be reversed. A mutable * drawable is guaranteed to not share its state with any other drawable. * This is especially useful when you need to modify PRoperties of drawables * loaded from resources. By default, all drawables instances loaded from * the same resource share a common state; if you modify the state of one * instance, all the other instances will receive the same modification. * * Calling this method on a mutable Drawable will have no effect. * * @return This drawable. * @see ConstantState * @see #getConstantState() */public Drawable mutate() { return this;}

翻译一下注释吧:让这个drawable可变,这个操作是不可逆的。一个可变Drawable可以保证不与其它的Drawable分享一个状态。当你需要修改资源中的Drawable的属性时这个方法是非常有用的,因为默认情况下加载相同资源的所有Drawable实例拥有同一个状态,如果你在一个地方改变了状态,其它的实例也会跟着改变。 最后使用text1.getBackground().mutate().setAlpha(255);程序运行正常 这里写图片描述

改变text1的背景透明度,text2透明度不跟着改变。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表