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);
     
  • 相关阅读:
    php yii多表查询
    [EA]反向工程
    [EA]入门教程
    [EA]DB数据逆向工程
    [MacromediaFlashMX]破解版下载
    [Git]Git-Github入门
    [github]Github上传代码
    [Apache]Windows下Apache服务器搭建
    [Apache]安装中出现的问题
    [ASP调试]小旋风Web服务器使用
  • 原文地址:https://www.cnblogs.com/exmyth/p/4844831.html
Copyright © 2011-2022 走看看