zoukankan      html  css  js  c++  java
  • Android ImageView 图片设置为透明

     

    方法一:

    在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);
     
  • 相关阅读:
    MySQL--自增列持久化问题
    MySQL--”自然键”和”代理键”优缺点
    MySQL--REPLACE INTO更新自增列值引发的异常
    MySQL Inception--原理和注意事项
    MySQL Inception--安装
    MySQL--关联更新
    MySQL--Delete语句别名+LIMIT
    MySQL Disk--SSD 特性
    BootStrap简介
    BootStrap简单使用
  • 原文地址:https://www.cnblogs.com/exmyth/p/4844831.html
Copyright © 2011-2022 走看看