解决Android背景透明状态设置异常的现象

赞赏 2017-06-13

在需求上遇到背景设置透明度还是比较常见的,设置透明度有几种方式,但是不同的场景应用下,不同的方式可能会出现一些问题。针对开发过程中的需求做以下总结。


先看效果图

图1、蓝色头部和输入框背景初始状态


图2、点击按钮01,输入框的透明度不起作用,和title的透明度一样


 图3、点击按钮02,背景透明度设置正常,但是可能会对全局的背景有影响


图4、点击按钮03,背景透明度设置正常,具体原因代码注释有提到


再加上代码

public void button01(View view){ 
 // search透明度不起作用
 title.setAlpha(0.2f);
 search.setAlpha(0.8f);
}
public void button02(View view){
 // 在布局中多个控件同时使用一个资源的时候,这些控件会共用一个状态
 // 如果你改变了一个控件的状态,其他的控件都会接收到相同的通知
 title.getBackground().setAlpha(51);
 search.getBackground().setAlpha(153);
}
public void button03(View view){
 // 使用mutate()方法使该控件状态不定,这样不定状态的控件就不会共享自己的状态了
 title.getBackground().mutate().setAlpha(51);
 search.getBackground().mutate().setAlpha(153);
}


布局:

<?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">
<LinearLayout
 android:id="@+id/ll_title"
 android:layout_width="match_parent"
 android:layout_height="80dp"
 android:gravity="center"
 android:background="#0000ff"
 android:orientation="horizontal">
 <EditText
  android:id="@+id/et_search"
  android:layout_width="200dp"
  android:layout_height="60dp"
  android:gravity="center"
  android:hint="输入框"
  android:textColorHint="#ffffff"
  android:background="@drawable/search_title_bg"/>
</LinearLayout>
<LinearLayout
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_marginTop="40dp"
 android:orientation="horizontal">
 <Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="01"
  android:onClick="button01"/>
 <Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="02"
  android:onClick="button02"/>
 <Button
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:text="03"
  android:onClick="button03"/>
</LinearLayout>
</LinearLayout>


输入框背景 search_title_bg

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
 android:color="#000000"/>
<corners
 android:radius="8dp"/>
<stroke
 android:width="1dp"
 android:color="#666666"/>
</shape>


写在后面的

背景透明度设置比较常见,mutate()方法,可以解决背景透明状态设置异常的现象。

登陆后阅读全文
阅读 1653 赞赏 0 有用 0 没用 0 收藏 0 分享

   



0 条留言

相关文章

Android 8.0 Oreo 来啦!

android studio如何直接给apk包签名

Android jenkins自动化打包Eclipse APK

现代 Android 开发资源汇总

Android 智能下拉刷新框架 - SmartRefreshLayout

推荐 | 腾讯开源的专注提升H5首屏加载速度的VasSonic框架

推荐一个Android Studio插件(显示Android资源引用次数)

推荐 | BlockCanary帮你找到Android应用卡顿的原因

翻译 | Android studio实用小提示 (1-5)

翻译 | Android studio实用小提示 (6-10)

有料推荐

这世界欠我一个这样的老公!

高校学生模仿“世界名画”摆拍,可以说是戏精本精了

iPhone X 跌破发行价,苏宁200亿入股恒大 | 财经日日评

果然是高手!这次在日本,特朗普竹杠敲得不是一般狠

资深黄牛现身说法:iPhone X价格秒变不停,就像炒股一样

长一样的双胞胎也能识别?蚂蚁金服发布「眼纹识别」技术

苏联是怎么被阿富汗拖垮的?

美团或入局「分时租赁」共享汽车,王兴要大笔投入「泛出行」领域了? | 36氪独家

你或许被“一盘番茄炒蛋”刷屏了,但有人辛酸,有人质疑

iPhone X发售前夜,黄牛与苹果公司的不安

他的文章

HTML 如何 自定义元素?

php composer install 慢 不动 怎么办?

window mac linux 如何安装 Composer?

input radio在chrome和安卓手机浏览器不显示样式

大前端开发者需要了解的基础编译原理和语言知识

mysql如何杀死某条正在执行的sql语句?

解决Android背景透明状态设置异常的现象

如何让字体图标变大,变细,变颜色,加阴影

debian下如何安装pptp vpn客户端?

archLinux安装fcitx输入法不能切换中文?

手机扫一扫
分享文章