方法一:

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

 

相关文章:

  • 2022-01-22
  • 2021-10-20
  • 2022-12-23
  • 2021-08-07
  • 2021-12-27
  • 2022-12-23
  • 2021-05-11
  • 2022-02-20
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-14
  • 2021-10-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案