Android getBackground().setAlpha遇到问题解决办法
前言:
使用getBackground().setAlpha,导致其他布局背景透明度都改变的问题
从晚上9点就开始琢磨,为什么我在一个地方设置了getBackground().setAlpha(0);在别的activity中有些控件也变成透明的了,让我百思不得其解,哦,现在是晚上十一点四十五,问题终于解决(解决不了睡不着觉啊),觉得挺有意思的,分享一下,先举个例子:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" > <TextView android:id="@+id/text1" android:layout_width="match_parent" android:layout_height="60dp" android:background="@color/text_orange" /> <TextView android:id="@+id/text2" android:layout_width="match_parent" android:layout_height="60dp" android:background="@color/text_orange" /> </LinearLayout>
两个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实例拥有同一个状态,如果你在一个地方改变了状态,其它的实例也会跟着改变。
OK。所以
text1.getBackground().mutate().setAlpha(255);
问题解决了!
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
本文向大家介绍IOS json 解析遇到错误问题解决办法,包括了IOS json 解析遇到错误问题解决办法的使用技巧和注意事项,需要的朋友参考一下 概要: Error Domain=NSCocoaErrorDomain Code=3840 "The operation couldn't be completed. (Cocoa error 3840.)" (Unescaped control ch
本文向大家介绍Mac下使用charles遇到的问题以及解决办法,包括了Mac下使用charles遇到的问题以及解决办法的使用技巧和注意事项,需要的朋友参考一下 最近使用上了Charles,因为之前一直使用Fidder,所以还是碰到了一些问题,这里记录一下。 如何安装破解版 打开charles后,发现访问但是抓不到包 抓取HTTPS的接口,看response是乱码 一、如何安装破解版 正版有30天试
本文向大家介绍Android 使用volley过程中遇到的问题解决办法,包括了Android 使用volley过程中遇到的问题解决办法的使用技巧和注意事项,需要的朋友参考一下 Android 使用volley过程中遇到的问题解决办法 本文主要介绍使用 volley 过程中遇到的问题,错误提示: com.android.volley.NoConnectionError: java.io.Interr
本文向大家介绍详解Python安装tesserocr遇到的各种问题及解决办法,包括了详解Python安装tesserocr遇到的各种问题及解决办法的使用技巧和注意事项,需要的朋友参考一下 Tesseract的安装及配置 在Python爬虫过程中,难免遇到各种各样的验证码问题,最简单的就是这种验证码了,那么在遇到验证码的时候该怎么办呢?我们就需要OCR技术了,OCR-即Optical Charac
本文向大家介绍在Ajax中使用get和post所遇到的问题及解决办法,包括了在Ajax中使用get和post所遇到的问题及解决办法的使用技巧和注意事项,需要的朋友参考一下 使用get遇到的问题: 1.问题一. 缓存:当每次访问的url相同,客户端直接读取本地缓存里面的内容,即使后台数据变化前台也不会有变化; 解决方法:在?后面链接一个num=【随机数Math.random()】或者num=【时间戳
本文向大家介绍Android webview 遇到android.os.FileUriExposedException错误解决办法,包括了Android webview 遇到android.os.FileUriExposedException错误解决办法的使用技巧和注意事项,需要的朋友参考一下 Android webview 遇到android.os.FileUriExposedException