import android.content.Context;
import android.graphics.Camera;
import android.graphics.Matrix;
import android.os.AsyncTask;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.view.View;
import android.view.animation.Transformation;
import android.widget.AdapterView;
import android.widget.Gallery;
import android.widget.ImageView;
import com.hk.shop.comm.Comm;
/**
* 用在首页产品展示模块的gallery<br/>
* 1、这是一个3d的gallery<br/>
* 2、能自动判断当前选中的图片,并实现回调
*
* @author yizhe
* @date 2012-6-19
*/
public class HKGallery4Module extends Gallery {
Context context;
// 以下属性用于处理3d
private Camera camera = new Camera();// 相机类
private int maxRotationAngle = 60;// 最大转动角度
private int maxZoom = 60;// z方向的移动至,相当于缩放
private int coveflowCenter;// 半径值
private int height;
// 以下属性用于处理获取当前选中的项
private int currentPosition;
private int lastPosition;
public int getLastPosition() {
return lastPosition;
}
public void setLastPosition(int lastPosition) {
this.lastPosition = lastPosition;
}
boolean isItemSelectedChange;// 选中的项是否发生了变化
public HKGallery4Module(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
this.context = context;
this.setStaticTransformationsEnabled(true);
ini();
}
public HKGallery4Module(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
this.setStaticTransformationsEnabled(true);
ini();
}
public HKGallery4Module(Context context) {
super(context);
this.context = context;
this.setStaticTransformationsEnabled(true);
ini();
}
void ini() {
setOnItemSelectedListener(new OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view,
int position, long id) {
setCurrentPosition(position);
isItemSelectedChange = true;
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});
}
// ------------------------以下用户处理获取当前选中项------------------------//
@Override
public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_UP) {
JudgeTask task = new JudgeTask();
task.execute(); // 手离开开始执行,判断gallery是否停止
}
return super.onTouchEvent(event);
}
// ------------------判断停止----------------//
class JudgeTask extends AsyncTask<Object, Object, Object> {
int i = -1;// 测试
@Override
protected Object doInBackground(Object... params) {
// 每500毫秒执行一次判断,实验证明可以精确判断
try {
do {
i++;
lastPosition = getCurrentPosition();
Thread.sleep(500);
} while (lastPosition != getCurrentPosition());
} catch (InterruptedException e) {
}
return null;
}
@Override
protected void onPostExecute(Object result) {
Comm.print("getCurrentPosition----- " + getCurrentPosition());
// 已经停止
// 如果选中的项发生了变化,执行...
if (isItemSelectedChange) {
if (null != onSelectedChange) {
onSelectedChange.onSelectedChange(getCurrentPosition());
}
}
isItemSelectedChange = false;
super.onPostExecute(result);
}
}
protected HKGallerySelectedChange onSelectedChange;
public void setOnSelectedChange(HKGallerySelectedChange c) {
this.onSelectedChange = c;
}
public interface HKGallerySelectedChange {
public void onSelectedChange(int position);
}
// ------------------------以下用户处理3d效果------------------------//
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
super.onLayout(changed, l, t, r, b);
height = getHeight();
}
public int getMaxRotationAngle() {
return maxRotationAngle;
}
public void setMaxRotationAngle(int maxRotationAngle) {
this.maxRotationAngle = maxRotationAngle;
}
public int getMaxZoom() {
return maxZoom;
}
public void setMaxZoom(int maxZoom) {
this.maxZoom = maxZoom;
}
private int getCenterOfCoverflow() {
return (getWidth() - getPaddingLeft() - getPaddingRight()) / 2
+ getPaddingLeft();
}
private static int getCenterOfView(View view) {
return view.getLeft() + view.getWidth() / 2;
}
// 控制gallery中每个图片的旋转(重写的gallery中方法)
@Override
protected boolean getChildStaticTransformation(View child, Transformation t) {
// 取得当前子view的半径值
final int childCenter = getCenterOfView(child);
final int childWidth = child.getWidth();
// 旋转角度
int rotationAngle = 0;
// 重置转换状态
t.clear();
// 设置转换类型
t.setTransformationType(Transformation.TYPE_BOTH);
// 如果图片位于中心位置不需要进行旋转
if (childCenter == coveflowCenter) {
transformImageBitmap((ImageView) child, t, 0);
} else {
// 根据图片在gallery中的位置来计算图片的旋转角度
rotationAngle = (int) (((float) (coveflowCenter - childCenter) / childWidth) * maxRotationAngle);
// 如果旋转角度绝对值大于最大旋转角度返回(-mMaxRotationAngle或mMaxRotationAngle;)
if (Math.abs(rotationAngle) > maxRotationAngle) {
rotationAngle = (rotationAngle < 0) ? -maxRotationAngle
: maxRotationAngle;
}
transformImageBitmap((ImageView) child, t, rotationAngle);
}
return true;
}
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
coveflowCenter = getCenterOfCoverflow();
super.onSizeChanged(w, h, oldw, oldh);
}
private void transformImageBitmap(ImageView child, Transformation t,
int rotationAngle) {
// 对效果进行保存
camera.save();
// 返回旋转角度的绝对值
// final int rotation = Math.abs(rotationAngle);
// 在Z轴上正向移动camera的视角,实际效果为放大图片。
// 如果在Y轴上移动,则图片上下移动;X轴上对应图片左右移动。
camera.translate(0f, 0f, maxZoom);
// // 精确的缩放控制
// if (rotation < mMaxRotationAngle) {
// float zoomAmount = (float) (mMaxZoom + (rotation * 1.5));
// mCamera.translate(0.0f, 0.0f, zoomAmount);
// }
// 如果在Y轴上旋转,对应图片竖向向里翻转。
// 如果在X轴上旋转,对应图片横向向里翻转。
camera.rotateY(rotationAngle);
final Matrix imageMatrix = t.getMatrix();
camera.getMatrix(imageMatrix);
camera.restore();
// 设置旋转中心点
// 图片高度,用的gallery的高度
// 图片宽度,用的图片宽度;这里图片的高度取不到,都是-1,不知道什么原因
final int imageWidth = child.getLayoutParams().width;
imageMatrix.preTranslate(-(imageWidth / 2), -height / 2);
imageMatrix.postTranslate((imageWidth / 2), height / 2);
camera.save();
}
public int getCurrentPosition() {
return currentPosition;
}
public void setCurrentPosition(int currentPosition) {
this.currentPosition = currentPosition;
}
}
分享到:
相关推荐
《Android_Gallery3D源码解析》 Gallery3D是Android平台上的一款3D图片浏览应用,它展示了Android系统中3D图形处理和图像展示的强大能力。这个应用的源码提供了深入理解Android图形库、线程管理、数据加载优化以及...
对于按键控制,我们可以监听设备的`KeyEvent`,根据按键类型(如`KeyEvent.KEYCODE_DPAD_LEFT`和`KeyEvent.KEYCODE_DPAD_RIGHT`)改变`Gallery`的选中项。这通常在`Activity`的`onKeyDown()`方法中完成: ```java @...
为实现无限循环,我们需要在数据源的末尾添加当前数据的副本,并在用户滑动到边缘时重新定位选中项,使其看起来像一直在循环。 2. **自动跳转**:自动跳转功能可以在设定的时间间隔后自动切换到下一个图片。这可以...
**Android的Gallery3D详解** Gallery3D是Android操作系统中的一款强大的3D图像查看应用,专为用户提供了独特的三维浏览体验。它不仅是一款高效的图片管理工具,还利用了Android设备的硬件加速功能,实现了流畅的3D...
在Android平台上,`Gallery`组件曾经是实现3D滚动效果的一种流行方式,它允许用户以横向滑动的方式浏览图片或项目列表,同时提供了一种视觉上的立体感。然而,随着Android版本的更新,`Gallery`组件在API 16...
当用户在`Gallery`中选择一个新项时,触发一个动画,让当前选中的图片以3D方式翻转到下一位置。你可以使用`ObjectAnimator`或者`ValueAnimator`来创建这种动画,改变图片的`rotationY`属性,模拟3D翻转。同时,为了...
《Android Gallery3D最新源码解析》 Gallery3D是Android平台上的一款开源3D图片浏览应用,它以其高效、流畅的用户体验和强大的3D渲染能力而受到开发者和用户的喜爱。本文将深入探讨Gallery3D的最新源码,揭示其背后...
"android 3D gallery 显示图片"这个主题主要涵盖了如何在Android应用中实现一个可以360度无限滚动展示图片的组件,这种效果通常会给用户带来更丰富的视觉体验。以下将详细介绍实现这一功能的关键知识点。 1. **...
在Android早期版本中,`Gallery`被广泛用来创建类似相册的3D效果,尽管在API 16之后,它被`GridView`和`RecyclerView`等更灵活的视图替代。然而,通过一些自定义实现,我们仍然可以创建出类似`Gallery 3D`的效果。 ...
**Android Gallery3D详解** Gallery3D是Android平台上的一款高性能图片浏览器应用,它以其流畅的3D滚动效果和优秀的用户体验而备受赞誉。本篇将深入探讨Gallery3D的源代码,解析其背后的实现原理和技术细节。 ### ...
《Android 3D CoverFlow与3D Gallery:OpenGL ES实现的视觉盛宴》 在移动应用开发领域,Android系统以其开放性和强大的功能吸引了无数开发者。在众多应用中,UI设计占据了至关重要的地位,其中3D效果的引入更是为...
在Android平台上,"android gallery3D" 是一个用于创建类似iPhone风格3D图像浏览体验的应用程序。这个项目致力于实现一种视觉上引人入胜且流畅的图片画廊,通过优化和特殊效果处理,降低了图像边缘的锯齿现象,提供...
在这个特定的需求中,我们不仅需要让Gallery实现循环滚动,还要在选中图片时对其进行放大,并提供按钮来控制图片的左右切换,同时加入图片选中时的弹出动画效果。下面我们将详细讲解如何实现这些功能。 首先,我们...
在Android开发中,`Gallery`控件是一种非常实用的组件,它允许用户通过左右滑动来展示一系列的项目,类似于iOS中的Carousel或者Pinterest的布局。`Gallery`控件基于`AbsListView`,提供了水平方向上的滚动浏览体验。...
在Android开发中,"android Gallery 3d 图片浏览 oom"是一个常见的问题,尤其是在处理大量图片时。oom,全称是Out Of Memory,即内存溢出错误,当应用程序分配的内存超过系统能提供的范围时,就会触发这个错误。本文...
《Android控件Gallery3D效果实现详解》 在Android应用开发中,为了提供更丰富的用户交互体验,常常会使用到一些特殊效果的控件。其中,Gallery3D效果就是一个非常吸引眼球的设计,它能实现类似3D翻转的图片浏览体验...
// 在这里判断并加载当前选中的图片 Glide.with(context) .load(imageUrls.get(position)) .into((ImageView) view); } @Override public void onNothingSelected(AdapterView<?> parent) { // 如果不需要...
《深入剖析Android Gallery3D源码》 在Android操作系统中,Gallery3D是一款经典的图片浏览应用,它以其高效、流畅的用户体验而广受好评。本文将深入探讨Gallery3D的源码,帮助开发者理解其背后的实现原理,进一步...
这个3D Gallery效果的实现基于对Android系统的深入理解和熟练运用,主要涉及到以下几个关键知识点: 1. **自定义View**:Android系统允许开发者自定义View或ViewGroup,以满足特定的需求。在这个案例中,开发者创建...
总结一下,要在Android的`Gallery`组件中实现选中放大的效果,主要步骤包括:创建`Gallery`布局,编写自定义适配器,重写`getView()`以处理点击事件并启动缩放动画。这种方法可以显著提升用户在浏览图片或联系人时的...