Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Android 背景透明度设置总结大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

一、写在前面的

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

二、先看效果

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

大佬总结

以上是大佬教程为你收集整理的Android 背景透明度设置总结全部内容,希望文章能够帮你解决Android 背景透明度设置总结所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:android