Android 图片(ImageView)设置透明的方法

1 在xml 中设置的方法

 可以直接使用android:alpha="透明度数值"

   <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:alpha="0.6"
        android:src="@mipmap/test" />

2 在java 代码中设置setAlpha 例如

img.setAlpha(0.6f);
发布了675 篇原创文章 · 获赞 279 · 访问量 71万+

猜你喜欢

转载自blog.csdn.net/qq_33210042/article/details/105574425