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);
     
  • 相关阅读:
    Kafka日志段源码分析
    Kafka日志结构概览
    LDAP统一身份认证解读及实践
    Keycloak集成三方身份提供者的注销流程
    Keycloak会话管理-refreshToken
    Cas校验INVALID_TICKET-not recognized
    如何获取Docker容器的root权限
    OIDC-code to token
    Newrelic集成wildfly报NoClassDefFoundError
    Cookie深入详解
  • 原文地址:https://www.cnblogs.com/exmyth/p/4844831.html
Copyright © 2011-2022 走看看