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

雨季o莫忧离:http://blog.csdn.net/luckkof

正文

方法一:

在xml中,设置如下

android:id="@+id/xx_id"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:background="@drawable/xx" />

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中,设置如下

android:id="@+id/xx_id"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:src="@drawable/xx" />

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);

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐