`

采用Bitmap的extractAlpha产生图片边缘光晕效果

阅读更多
      前几天使用一款android手机测试的时候,
发现了应用的 shortcut 九宫格页面有一个点击效果,
就是当点击一个应用的icon图标的时候,会在icon的周围有荧光效果,
无论icon的形状是什么样子的都会有这样的效果,然后又想到Apidemo里面有个alphaDrawable例子
大家可以去在回顾一下,之后我就想到了会不会是使用这个extractAlpha实现的,自己就动手写了个例子
发现效果确实不错,分享给大家
主要关键点
1、设置imageview的src drawable
2、从src drawable中抽取 bitmap的alpha(只有透明度没有颜色)
3、使用bitmap的alpha填充一种颜色后生产新的bitmap
4、使用新生成的bitmap做一个statelistdrawable作为imageview的backgroud
5、这需要注意的是要跟imageview设置几个像素的padding这样才不会让src和backgroud重合






主要的代码:
/*
 * Copyright (C) 2009 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.study;

import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Bitmap.Config;
import android.graphics.drawable.BitmapDrawable;
import android.graphics.drawable.StateListDrawable;
import android.util.AttributeSet;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;

/**
 * A layout that arranges its children in a grid.  The size of the
 * cells is set by the {@link #setCellSize} method and the
 * android:cell_width and android:cell_height attributes in XML.
 * The number of rows and columns is determined at runtime.  Each
 * cell contains exactly one view, and they flow in the natural
 * child order (the order in which they were added, or the index
 * in {@link #addViewAt}.  Views can not span multiple cells.
 */
public class FixedGridLayout extends ViewGroup {
    int mCellWidth;
    int mCellHeight;

    public FixedGridLayout(Context context) {
        super(context);
    }

    public FixedGridLayout(Context context, AttributeSet attrs) {
        super(context, attrs);

        // Read the resource attributes.
        TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.FixedGridLayout);
        mCellWidth = a.getDimensionPixelSize(R.styleable.FixedGridLayout_cellWidth, -1);
        mCellHeight = a.getDimensionPixelSize(R.styleable.FixedGridLayout_cellHeight, -1);
        a.recycle();
        
    }

    public void setCellWidth(int px) {
        mCellWidth = px;
        requestLayout();
    }

    public void setCellHeight(int px) {
        mCellHeight = px;
        requestLayout();
    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int cellWidthSpec = MeasureSpec.makeMeasureSpec(mCellWidth, MeasureSpec.AT_MOST);
        int cellHeightSpec = MeasureSpec.makeMeasureSpec(mCellHeight, MeasureSpec.AT_MOST);

        int count = getChildCount();
        for (int index=0; index<count; index++) {
            final View child = getChildAt(index);
            child.measure(cellWidthSpec, cellHeightSpec);
        }
        // Use the size our parents gave us
        setMeasuredDimension(resolveSize(mCellWidth*count, widthMeasureSpec),
                resolveSize(mCellHeight*count, heightMeasureSpec));
    }

    @Override
    protected void onLayout(boolean changed, int l, int t, int r, int b) {
        int cellWidth = mCellWidth;
        int cellHeight = mCellHeight;
        int columns = (r - l) / cellWidth;
        if (columns < 0) {
            columns = 1;
        }
        int x = 0;
        int y = 0;
        int i = 0;
        int count = getChildCount();
        for (int index=0; index<count; index++) {
            final View child = getChildAt(index);

            int w = child.getMeasuredWidth();
            int h = child.getMeasuredHeight();

            int left = x + ((cellWidth-w)/2);
            int top = y + ((cellHeight-h)/2);

            child.layout(left, top, left+w, top+h);
            if (i >= (columns-1)) {
                // advance to next row
                i = 0;
                x = 0;
                y += cellHeight;
            } else {
                i++;
                x += cellWidth;
            }
        }
    }
    
    @Override
    protected void onFinishInflate() {
        super.onFinishInflate();
        int cnt = getChildCount();
        Paint p = new Paint();
        p.setColor(Color.CYAN);
        
        for (int i=0; i<cnt; i++) {
            View v = getChildAt(i);
            setStateDrawable((ImageView)v, p);
        }
    }
	
	private void setStateDrawable(ImageView v, Paint p) {
		BitmapDrawable bd = (BitmapDrawable) v.getDrawable();
		Bitmap b = bd.getBitmap();
		Bitmap bitmap = Bitmap.createBitmap(bd.getIntrinsicWidth(), bd.getIntrinsicHeight(), Config.ARGB_8888);
		Canvas canvas = new Canvas(bitmap);
		canvas.drawBitmap(b.extractAlpha(), 0, 0, p);
		
		StateListDrawable sld = new StateListDrawable();
		sld.addState(new int[]{android.R.attr.state_pressed}, new BitmapDrawable(bitmap));
		
		v.setBackgroundDrawable(sld);
	}
}


具体见附件。

为ImageView或者LinearLayout画图片阴影
http://407827531.iteye.com/blog/1194984

图片阴影效果和影子效果
http://www.eoeandroid.com/thread-90575-1-2.html
  • 大小: 67.3 KB
  • 大小: 66 KB
  • 大小: 64.7 KB
分享到:
评论
10 楼 liuyusi 2013-11-08  
这个真的很有用,非常感谢楼主
9 楼 JavaStudyEye 2013-02-28  
  太棒了
8 楼 zhonghe1114 2013-02-05  
用javascript在android里实现光晕效果如何?
7 楼 xuyongfeng86 2012-11-22  
效果很好,我想加到获得焦点后这种效果,能实现吗?
6 楼 wangpeifeng669 2012-07-25  
谢谢,下下来学习学习
5 楼 yang668 2011-12-27  
这个代码写得很有质量
4 楼 zlj_fly 2011-11-09  
效果很不错,谢谢lz
3 楼 mailyiran200101 2011-11-08  
哈哈,用上了,感谢
2 楼 helloandroid 2011-10-21  
哈哈,刚刚试了下,这效果可以啊,我已经用上了
1 楼 yangjiantong 2011-10-21  
不错,感觉你对ui方面很有研究啊

相关推荐

    Android下利用Bitmap切割图片

    当我们需要对图片进行裁剪、缩放或进行其他操作时,Bitmap提供了丰富的功能。本篇文章将详细探讨如何在Android环境下利用Bitmap来切割图片。 首先,我们需要理解Bitmap对象的基本概念。Bitmap是一个像素数据的容器...

    bitmap上传图片demo

    "bitmap上传图片demo"是一个示例项目,展示了如何利用Bitmap处理本地图片并进行上传,同时提供了将图片裁剪为圆形以适合作为头像的功能。在这个过程中,我们将深入探讨Bitmap的使用、图片加载优化以及图片裁剪技术。...

    Bitmap画圆形图片

    有时,我们可能需要将常规的矩形Bitmap转换为圆形,例如在创建用户头像时,以实现更美观的效果。本篇将深入探讨如何使用Bitmap创建圆形图片。 首先,理解Bitmap的基本概念很重要。Bitmap是一个像素数组,用于在屏幕...

    android中对Bitmap图片设置任意角为圆角

    在Android开发中,Bitmap是用于表示图像数据的基本对象,它是一种内存中的图片表示形式。而当我们需要在应用程序中展示带有圆角的图片时,通常会用到Bitmap的处理技巧。本篇文章将深入探讨如何在Android中对Bitmap...

    Android中Glide获取图片Path、Bitmap用法详解

    软件开发网在此之前给大家介绍过图片加载框架Glide的基本用法介绍,大家可以先参考一下,本篇内容更加深入的分析了Glide获取图片Path、Bitmap用法,以及实现的代码分析。 1. 获取Bitmap: 1)在图片下载缓存好之后...

    Android 实现把bitmap图片的某一部分的颜色改成其他颜色

    在 Android 中,我们可以使用 Bitmap 类来处理 bitmap 图片,该类提供了多种方法来处理 bitmap 图片,例如 getPixels() 方法可以获取 bitmap 图片的像素颜色值,setPixels() 方法可以设置 bitmap 图片的像素颜色值。...

    Bitmap加载、变换、显示图片

    在Android开发中,Bitmap是处理图像的核心类,用于表示像素数据。Bitmap的使用涉及到图片的加载、变换、显示以及性能优化等多...在实际开发中,开发者需要根据需求灵活运用这些技术,以实现高效、流畅的图片展示效果。

    android获取图片尺寸的两种方式及bitmap的缩放操作

    我就废话不多说了,大家还是直接看代码吧~ //Uri.parse(file://+result.getImage... //方法一:通过uri把图片转化为bitmap的方法 Bitmap bitmap= BitmapFactory.decodeFile&#40;path&#41;; int height= bitmap.get

    C# 图片裁剪器(使用:Bitmap)

    本教程将详细讲解如何利用C#的Bitmap类创建一个图片裁剪器,允许用户自定义裁剪尺寸和生成缩略图。 首先,我们需要引入必要的命名空间,以便使用Bitmap类和其他相关组件: ```csharp using System.Drawing; using ...

    Android Bitmap网络图片下载

    - 第三方库如`Picasso`, `Glide`, `Universal Image Loader`提供了丰富的图片处理功能,如圆角、模糊效果等。 总的来说,这个示例源代码将引导开发者学习如何在Android中有效地处理网络图片,包括下载、解码、缩放...

    APP_Bitmap(图片操作)

    Bitmap是Android系统中用于处理图像的核心类,它在Android应用开发中扮演着至关重要的角色。在深入探讨Bitmap之前,我们先来理解一下它的基本概念。Bitmap代表的是位图,即像素数组,它存储了图像的颜色信息。在...

    bitmap 背景图片

    本教程将深入探讨如何使用Bitmap为系统图标添加自定义背景图片,从而实现个性化界面设计。 首先,理解Bitmap的基本概念是至关重要的。Bitmap是一个二维像素数组,每个像素可以有多种颜色。在Android中,Bitmap通常...

    C#图像水印,为图片增加光晕效果

    摘要:C#源码,图形图像,图片加水印 C#图像水印,为图片增加光晕效果,一个实用的C#图像处理功能实例,在一张图片上加上光晕效果,实际光晕效果是由事先准备好的水印图片来叠加的,计算好图像坐标,叠加到原处,就...

    bitmap图片处理工具类

    "Bitmap图片处理工具类" 提供了多种对位图(Bitmap)进行操作的功能,如颜色转换、图像分割、缩放、旋转、调整透明度、生成圆角图片以及文字与倒影效果的绘制。接下来,我们将深入探讨这些知识点。 首先,`...

    Android图片Bitmap和字符串String之间的相互转换

    在Android开发中,处理图像数据是一项常见的任务,而Bitmap和String是两个核心的数据类型,分别代表位图图像和文本字符串。Bitmap对象用于存储和显示图像,而String则常用于保存和传输文本信息。本篇文章将深入探讨...

    游戏开发BITMAP图片

    BITMAP图片在游戏开发中的应用是至关重要的,尤其对于初学者来说,理解并掌握BITMAP的基本概念和使用方法是入门游戏编程的关键步骤。BITMAP,也称为位图,是一种常见的图像文件格式,它以像素阵列的形式存储图像信息...

    android 获取界面部分view,view截图,生成bitmap图片

    这个过程涉及到的关键知识点包括View的层级结构、Bitmap的生成与处理以及图片的保存和合成。 1. **View层级结构**: Android的UI系统基于View和ViewGroup构建,一个ViewGroup可以包含多个View。当我们说“获取界面...

    二维码生成BitMap图片

    这里采用了红色作为黑色模块的颜色显示,虽然在标准二维码中通常使用黑色,但这一改动可以增加二维码的视觉效果。 4. **创建并填充Bitmap对象**: 根据矩阵的宽度和高度创建一个`Bitmap`对象,并使用`setPixels()`...

    Android中把bitmap存成BMP格式图片的方法

    在Android开发中,有时我们需要将Bitmap对象转换成不同的图片格式,比如BMP。BMP(Bitmap File Format)是一种常见的位图文件格式,但它并不像JPEG或PNG那样被Android SDK直接支持。本文将详细介绍如何在Android中将...

Global site tag (gtag.js) - Google Analytics