Android之绚丽的图片游览效果--有点像W7效果,透明的倒影,层叠的图片

  • @param originalImage

  • @return

*/

public static Bitmap createReflectedImage(Bitmap originalImage) {

// The gap we want between the reflection and the original image

final int reflectionGap = 4;

int width = originalImage.getWidth();

int height = originalImage.getHeight();

// This will not scale but will flip on the Y axis

Matrix matrix = new Matrix();

matrix.preScale(1, -1);

// Create a Bitmap with the flip matrix applied to it.

// We only want the bottom half of the image

Bitmap reflectionImage = Bitmap.createBitmap(originalImage, 0,

height / 2, width, height / 2, matrix, false);

// Create a new bitmap with same width but taller to fit reflection

Bitmap bitmapWithReflection = Bitmap.createBitmap(width,

(height + height / 2), Config.ARGB_8888);

// Create a new Canvas with the bitmap that’s big enough for

// the image plus gap plus reflection

Canvas canvas = new Canvas(bitmapWithReflection);

// Draw in the original image

canvas.drawBitmap(originalImage, 0, 0, null);

// Draw in the gap

Paint defaultPaint = new Paint();

canvas.drawRect(0, height, width, height + reflectionGap, defaultPaint);

// Draw in the reflection

canvas.drawBitmap(reflectionImage, 0, height + reflectionGap, null);

// Create a shader that is a linear gradient that covers the reflection

Paint paint = new Paint();

LinearGradient shader = new LinearGradient(0,

originalImage.getHeight(), 0, bitmapWithReflection.getHeight()

  • reflectionGap, 0x70ffffff, 0x00ffffff, TileMode.CLAMP);

// Set the paint to use this shader (linear gradient)

paint.setShader(shader);

// Set the Transfer mode to be porter duff and destination in

paint.setXfermode(new PorterDuffXfermode(Mode.DST_IN));

// Draw a rectangle using the paint with our linear gradient

canvas.drawRect(0, height, width, bitmapWithReflection.getHeight()

  • reflectionGap, paint);

return bitmapWithReflection;

}

//drawable 类型转化为bitmap

public static Bitmap drawableToBitmap(Drawable drawable) {

Bitmap bitmap = Bitmap

.createBitmap(

drawable.getIntrinsicWidth(),

drawable.getIntrinsicHeight(),

drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888
Bitmap.Config.RGB_565);

Canvas canvas = new Canvas(bitmap);

// canvas.setBitmap(bitmap);

drawable.setBounds(0, 0, drawable.getIntrinsicWidth(), drawable

.getIntrinsicHeight());

drawable.draw(canvas);

return bitmap;

}

}

3、自定义的Gallery,继承Gallery类,重写getChildStaticTransformation方法,实现图片的重叠和透明度渐变:CoverFlow.java

///******************************************************************************//

///*********************请尊重tank的成果毕竟这也是花了笔者很多时间和心思//

/************************* 为了让大家容易懂tank特地详细的写了很多的解释*********************************************

///欢迎访问我的博客http://www.cnblogs.com/tankaixiong/******************//

///里面文章将持续更新!************************//

package com.myandroid.test;

import android.content.Context;

import android.graphics.Camera;

import android.graphics.Matrix;

import android.util.AttributeSet;

import android.util.Log;

import android.view.View;

import android.view.animation.Transformation;

import android.widget.Gallery;

import android.widget.ImageView;

//自己定义的Gallery

public class CoverFlow extends Gallery {

private Camera mCamera = new Camera();

private int mMaxRotationAngle = 50;

private int mMaxZoom = -500;

private int mCoveflowCenter;

private boolean mAlphaMode = true;

private boolean mCircleMode = false;

public CoverFlow(Context context) {

super(context);

this.setStaticTransformationsEnabled(true);

Log.e(“sequence”, “CoverFlow2”);

}

public CoverFlow(Context context, AttributeSet attrs) {

super(context, attrs);

this.setStaticTransformationsEnabled(true);

}

public CoverFlow(Context context, AttributeSet attrs, int defStyle) {

super(context, attrs, defStyle);

this.setStaticTransformationsEnabled(true);

}

public int getMaxRotationAngle() {

return mMaxRotationAngle;

}

public void setMaxRotationAngle(int maxRotationAngle) {

mMaxRotationAngle = maxRotationAngle;

}

public boolean getCircleMode() {

return mCircleMode;

}

public void setCircleMode(boolean isCircle) {

mCircleMode = isCircle;

}

public boolean getAlphaMode() {

return mAlphaMode;

}

public void setAlphaMode(boolean isAlpha) {

mAlphaMode = isAlpha;

}

public int getMaxZoom() {

return mMaxZoom;

}

public void setMaxZoom(int maxZoom) {

mMaxZoom = maxZoom;

}

private int getCenterOfCoverflow() {

return (getWidth() - getPaddingLeft() - getPaddingRight()) / 2

  • getPaddingLeft();

}

private static int getCenterOfView(View view) {

return view.getLeft() + view.getWidth() / 2;

}

//重写Garray方法 ,产生层叠和放大效果

@Override

protected boolean getChildStaticTransformation(View child, Transformation t) {

final int childCenter = getCenterOfView(child);

final int childWidth = child.getWidth();

int rotationAngle = 0;

t.clear();

t.setTransformationType(Transformation.TYPE_MATRIX);

if (childCenter == mCoveflowCenter) {

transformImageBitmap((ImageView) child, t, 0, 0);

} else {

rotationAngle = (int) (((float) (mCoveflowCenter - childCenter) / childWidth) * mMaxRotationAngle);

// Log.d(“test”, “recanglenum:”+Math.floor ((mCoveflowCenter -

// childCenter) / childWidth));

if (Math.abs(rotationAngle) > mMaxRotationAngle) {

rotationAngle = (rotationAngle < 0) ? -mMaxRotationAngle
mMaxRotationAngle;

}

transformImageBitmap((ImageView) child, t, rotationAngle,

(int) Math.floor((mCoveflowCenter - childCenter)/ (childWidth==0?1:childWidth)));

}

Log.e(“sequence”, “getChildStaticTransformation”);

return true;

}

/**

  • This is called during layout when the size of this view has changed. If

  • you were just added to the view hierarchy, you’re called with the old

  • values of 0.

  • @param w

  •        Current width of this view.
    
  • @param h

  •        Current height of this view.
    
  • @param oldw

  •        Old width of this view.
    
  • @param oldh

  •        Old height of this view.
    

*/

protected void onSizeChanged(int w, int h, int oldw, int oldh) {

mCoveflowCenter = getCenterOfCoverflow();

super.onSizeChanged(w, h, oldw, oldh);

自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级安卓工程师,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年最新Android移动开发全套学习资料》送给大家,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
img
img
img
img

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频
如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注Android)
img

最后

现在都说互联网寒冬,其实无非就是你上错了车,且穿的少(技能),要是你上对车,自身技术能力够强,公司换掉的代价大,怎么可能会被裁掉,都是淘汰末端的业务Curd而已!现如今市场上初级程序员泛滥,这套教程针对Android开发工程师1-6年的人员、正处于瓶颈期,想要年后突破自己涨薪的,进阶Android中高级、架构师对你更是如鱼得水,赶快领取吧!

上述【高清技术脑图】以及【配套的架构技术PDF】点击:Android架构视频+BAT面试专题PDF+学习笔记,或者私信回复【技能提升】即可获取!

为什么某些人会一直比你优秀,是因为他本身就很优秀还一直在持续努力变得更优秀,而你是不是还在满足于现状内心在窃喜!

(备注Android)**
[外链图片转存中…(img-JFVN5ejv-1710817635568)]

最后

现在都说互联网寒冬,其实无非就是你上错了车,且穿的少(技能),要是你上对车,自身技术能力够强,公司换掉的代价大,怎么可能会被裁掉,都是淘汰末端的业务Curd而已!现如今市场上初级程序员泛滥,这套教程针对Android开发工程师1-6年的人员、正处于瓶颈期,想要年后突破自己涨薪的,进阶Android中高级、架构师对你更是如鱼得水,赶快领取吧!

上述【高清技术脑图】以及【配套的架构技术PDF】点击:Android架构视频+BAT面试专题PDF+学习笔记,或者私信回复【技能提升】即可获取!

为什么某些人会一直比你优秀,是因为他本身就很优秀还一直在持续努力变得更优秀,而你是不是还在满足于现状内心在窃喜!

Android架构师之路很漫长,一起共勉吧!

  • 16
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值