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

时间: 2025-01-01 14:03:13

Android ImageView 图片设置为透明的相关文章

Android ImageView图片自适应

网络上下载下来的图片自适应:android:adjustViewBounds="true"(其详细解释在下面)<ImageView     android:id="@+id/dynamic_item_image"     android:layout_width="wrap_content"     android:layout_height="wrap_content"     android:layout_gravi

Android ImageView图片透明区域不响应点击事件,不规则图片透明区域响应点击事件

转载:http://blog.csdn.net/aminfo/article/details/7872681 经常会在项目中用到透明图片,不规则图片,特别是做游戏的时候,需要对图片的透明区域的点击事件做特别处理. 一.先上图片文件transparent.png,图片中间区域与外围区域是非透明的,其它区域是透明的: 二.上布局文件test.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout

[Android] ImageView.ScaleType设置图解

ImageView的Scaletype决定了图片在View上显示时的样子,如进行何种比例的缩放,及显示图片的整体还是部分,等等. 设置的方式包括: 1. 在layout xml中定义android:scaleType="CENTER" 2. 或在代码中调用imageView.setScaleType(ImageView.ScaleType.CENTER); 接下来,将对ScaleType的值和对应的显示效果用最直观的方式——真图演示的方法,来进行说明. 首先,是测试使用的原始图片: (

Android imageView图片按比例缩放

android:scaleType可控制图片的缩放方式,示例代码如下: [html] view plaincopyprint? <ImageView android:id="@+id/img" android:src="@drawable/logo" android:scaleType="centerInside" android:layout_width="60dip" android:layout_height=&q

Android ImageView图片代码实现按屏幕宽度等比例缩放

/** * 设置图片根据屏幕宽度进行等比例缩放 * @param imageView */ public static void setImageMatchScreenWidth(ImageView imageView){ BitmapDrawable bitmapDrawable = (BitmapDrawable) imageView.getDrawable(); if(bitmapDrawable == null) return; Bitmap bitmap = bitmapDrawabl

Android ImageView 图片圆角显示(转载)

转载自:http://www.w2bc.com/Article/3623 android中的ImageView只能显示矩形的图片,这样一来不能满足我们其他的需求,比如要显示圆形的图片,这个时候,我们就需要自定义ImageView了,其原理就是首先获取到图片的Bitmap,然后进行裁剪圆形的bitmap,然后在onDraw()进行绘制圆形图片输出. 自定义的圆形的ImageView类的实现代码如下: package com.rainwii.entity; //包名 import android.c

android开发(36) Android WebView背景设置为透明

xml布局 <WebView android:id="@+id/wv_content" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@android:color/transparent" android:layerType="software" /> 代码

Android 如何把一个 RelativeLayout或ImageView背景设为透明

在项目中,需要把RelativeLayout 和  ImageView背景设置为透明,怎么实现呢?这里主要通过代码,请参阅以下关键代码: public ImageView imgDetail; private RelativeLayout rlMain; rlMain= (RelativeLayout) findViewById(R.id.rlMain);//布局 imgDetail = (ImageView)findViewById(R.id.imgDetail); // 图片 //设置背景

Android开发教程--设置ImageView图片的显示比例

为适应不同屏幕的手机,ImageView图片的显示比例,可以使用android:scaleType属性来处理,处理方式的有以下几种: 1.在xml配置中使用:android:scaleType="centerCrop" 2.在代码中使用:   imageView.setScaleType(ImageView.ScaleType.CENTER_CROP); ScaleType的值分别代表的意义:ImageView是Android中的基础图片显示控件,该控件有个重要的属性是ScaleTyp