重叠gallery



QQ截图20110830165956.png
2011-8-30 17:00:33 上传
下载附件 (40.91 KB)

/**
author Wait→32號
date 2011-8-30
*/

import javax.security.auth.login.LoginException;
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;
import com.ioffice.home.R;

//自己定义的Gallery
public class CoverFlow extends Gallery {

//mCamera是用来做类3D效果处理,比如Z轴方向上的平移,绕Y轴的旋转等
private Camera mCamera = new Camera();
//mMaxRotationAngle是图片绕Y轴最大旋转角度,也就是屏幕最边上那两张图片的旋转角度
private int mMaxRotationAngle = 50;
//mMaxZoom是图片在Z轴平移的距离,视觉上看上进心来就是放大缩小的效果
private int mMaxZoom = -200;
private int mCoveflowCenter;
private boolean mAlphaMode = true;
private boolean mCircleMode = false;
public CoverFlow(Context context) {
  super(context);
  this.setStaticTransformationsEnabled(true);
}
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( 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(  child, t, rotationAngle,
     (int) Math.floor((mCoveflowCenter - childCenter)/ (childWidth==0?1:childWidth)));
  }
  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);
}
/**
  * Transform the Image Bitmap by the Angle passed
  *
  * @param imageView
  *            ImageView the ImageView whose bitmap we want to rotate
  * @param t
  *            transformation
  * @param rotationAngle
  *            the Angle by which to rotate the Bitmap
  */
private void transformImageBitmap(View child, Transformation t,
   int rotationAngle, int d) {
  mCamera.save();
  final Matrix imageMatrix = t.getMatrix();
  final int imageHeight = child.getLayoutParams().height;
  final int imageWidth = child.getLayoutParams().width;
  final int rotation = Math.abs(rotationAngle);
  //mCamera.translate(0.0f, 0.0f, 100.0f);
  // As the angle of the view gets less, zoom in
  //if (rotation <= mMaxRotationAngle) {
  float zoomAmount = (float) (-140 + (rotation *2 ));
   if(rotationAngle<0){
    mCamera.translate((float) (-rotation*0.5), (float) (-rotation*0.3)+5, zoomAmount);
   }else{
    mCamera.translate((float) rotation, (float) (-rotation*0.3)+5, zoomAmount);
   
   }
   Log.i("info","---------------------->"+rotationAngle);
   if (mCircleMode) {
    if (rotation < 40){
     mCamera.translate(0.0f, 155, 0.0f);
     }else{
     mCamera.translate(0.0f, (255 - rotation * 2.5f), 0.0f);
     }
   }
   if (mAlphaMode) {
    //child.setBackgroundDrawable(getResources().getDrawable(R.drawable.app_bg));
    //child.setBackgroundColor(255);
   }
// }
  //mCamera.rotateY(rotationAngle);
  mCamera.getMatrix(imageMatrix);
  imageMatrix.preTranslate(-(imageWidth / 2), -(imageHeight / 2));
  imageMatrix.postTranslate((imageWidth / 2), (imageHeight / 2));
  mCamera.restore();
}
//重载视图显示顺序让左到中间显示,再到右到中间显示
protected int getChildDrawingOrder(int childCount,int i){
  long t=getSelectedItemId();
  int h=getSelectedItemPosition();
  if(i<childCount/2){
   return i;
  }
  return childCount-i-1+childCount/2;
}
}


QQ截图20110830165956.png (40.91 KB, 下载次数: 13)

2011-8-30 16:59:22 上传

下载次数: 13

QQ截图20110830165956.png

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值