android 设置图片透明

来源:互联网 发布:阿里云金牌服务商 编辑:程序博客网 时间:2024/05/16 10:30

方法一:

在xml中,设置如下

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

java代码中

private ImageView image;

imga = (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" />
java代码中

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


原创粉丝点击