Android ImageView 圖片設置為透明

jopen 10年前發布 | 134K 次閱讀 Android Android開發 移動開發

方法一:

在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);  
 本文由用戶 jopen 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!