android:alpha="0.8"
<ImageViewandroid:layout_width="match_parent"android:layout_height="match_parent"android:alpha="0.8"android:background="@drawable/bantouheibg"/>
colors<!-- 透明色 -->
<color name="transparent_dark">#88000000</color>
全透明:#00000000
半透明:#80000000
不透明:#FF000000
白色半透明:#80FFFFFF
还是以#FFFFFFFF为例,前面说过了前两位代表透明度,所以我们只要设置前两位就可以达到调整透明度的目的,下面按照百分比给大家展示:
0% :FF(完全不透明)
10% :E5
20% :CC
30% :B2
40% :99
50% :7F
60% :66
70% :4C
80% :33
90% :19
100% :00(全透明)
drawable
<?xml version="1.0" encoding="utf-8"?><shape xmlns:android="http://schemas.android.com/apk/res/android"><solid android:color="@color/transparent_dark" /><corners android:bottomRightRadius="3dp"android:bottomLeftRadius="3dp"/>
</shape>
调用
android:background="@drawable/shape_corner_down"
方法2:
1、创建设置透明工具方法
/**
* 修改颜色透明度
* @param color
* @param alpha
* @return
*/
public static int changeAlpha(int color, int alpha) {
int red = Color.red(color);
int green = Color.green(color);
int blue = Color.blue(color);
return Color.argb(alpha, red, green, blue);
}
调用
titlelitwo.setBackgroundColor(Utils.changeAlpha(ContextCompat.getColor(getActivity(), R.color.homeiconokc), (int) (f * 1 * 0xff)));
/*** 设置view 透明度 包括子view** @param view* @param alpha 10进制*/
public static void setAlphaAllView(View view, float alpha) {if (view == null) {return;}if (view.getBackground() != null) {view.getBackground().mutate().setAlpha((int) (alpha * 255));}float alphaNum = alpha;LgqLog.d( "setAlphaAllView alpha:" + alpha + " alphaNum:" + alphaNum);view.setAlpha(alphaNum);//设置子view透明度if (view instanceof ViewGroup) {ViewGroup vp = (ViewGroup) view;for (int i = 0; i < vp.getChildCount(); i++) {View viewChild = vp.getChildAt(i);//调用本身(递归)setAlphaAllView(viewChild, alpha);}}
}