前言
欢迎大家我分享和推荐好用的代码段~~
声明
欢迎转载,但请保留文章原始出处:
CSDN:http://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);