Android ImageView 图片设置为透明

来源:互联网 发布:网络视频服务器参数 编辑:程序博客网 时间:2024/05/18 20:48

前言
         欢迎大家我分享和推荐好用的代码段~~
声明
         欢迎转载,但请保留文章原始出处:
         CSDNhttp://www.csdn.net
         雨季o莫忧离:http://blog.csdn.net/luckkof

正文 

 

方法一:

在xml中,设置如下

<ImageView          android:id="@+id/xx_id"          android:layout_width="wrap_content"          android:layout_height="wrap_content"          android:background="@drawable/xx" />  <ImageView        android:id="@+id/xx_id"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:background="@drawable/xx" />

java代码中

private ImageView image;image = (ImageView) findViewById(R.id.xx_id); image.getBackground().setAlpha(0);

方法二:

在xml中,设置如下

<ImageView          android:id="@+id/xx_id"          android:layout_width="wrap_content"          android:layout_height="wrap_content"          android:src="@drawable/xx" />  <ImageView        android:id="@+id/xx_id"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:src="@drawable/xx" />


java代码中

private ImageView image;  image = (ImageView) findViewById(R.id.xx_id);  image.setAlpha(0);