Android 背景透明度设置总结

作者:ZPan_ 时间:2023-06-06 04:31:13 

一、写在前面的

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

二、先看效果图

图1、

Android 背景透明度设置总结   

图2、

Android 背景透明度设置总结

图3、

Android 背景透明度设置总结 

图4

Android 背景透明度设置总结

介绍:图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()方法,可以解决背景透明状态设置异常的现象。

来源:http://blog.csdn.net/zp0119/article/details/73162593

标签:android,背景透明度
0
投稿

猜你喜欢

  • C#实现自定义单选和复选按钮样式

    2022-07-22 04:01:41
  • C#语言中条件与&&与条件或||的区别

    2022-10-06 22:51:55
  • 浅谈Maven镜像更换为阿里云中央仓库(精)

    2022-08-06 04:48:17
  • 老生常谈Java中List与ArrayList的区别

    2023-03-26 19:52:33
  • 详解Spring Cloud Gateway基于服务发现的默认路由规则

    2022-10-27 06:10:53
  • Android实现Activity界面切换添加动画特效的方法

    2021-07-11 08:02:35
  • 详解Android控件状态依赖框架

    2023-07-01 10:01:06
  • 逐步讲解快速排序算法及C#版的实现示例

    2022-09-09 14:36:19
  • Android调试华为和魅族手机logcat不显示的问题

    2023-12-06 04:17:55
  • C++初阶教程之类和对象

    2021-07-24 18:53:46
  • Mybatis一对多查询的两种姿势(值得收藏)

    2023-07-01 00:20:08
  • Java基础之final关键字作用案例

    2022-11-02 19:23:35
  • Android之PreferenceActivity应用详解

    2023-03-28 14:26:37
  • 深入解析C#设计模式中对桥接模式的具体运用

    2023-11-08 21:53:06
  • java开发分布式服务框架Dubbo调用过程

    2022-04-13 14:29:55
  • Kotlin协程Dispatchers原理示例详解

    2022-09-26 00:09:45
  • C语言中的指针以及二级指针代码详解

    2022-09-04 21:40:28
  • SpringCloud中Eureka的配置及使用讲解

    2022-04-19 19:16:28
  • Android 仿支付宝中的余额宝收益进度条

    2022-11-23 03:58:33
  • android实现通过NFC读取卡号

    2023-06-24 08:45:54
  • asp之家 软件编程 m.aspxhome.com