Android UI控件之Gallery --拖动、覆盖、循环、3D图片浏览 效果之一

本文介绍如何在Android中通过自定义Gallery控件,实现带有循环、覆盖和3D视觉效果的图片浏览。文章展示了三张不同的实现效果,并强调了在原Gallery基础上进行扩展的重要性。
摘要由CSDN通过智能技术生成

             Android中的Gallery控件是十分灵活的,使用它可以做出许多很炫的效果.接下来要实现的一

     中效果在上一篇文章的基础上,实现了循环、覆盖、3D的效果。具体的情况如何?

             老规矩先上效果图:

                   第一张

                第二张

               第三张

                  要实现该效果,首先需要自己重新继承一下Gallery

package com.kiritor;

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;


public class CoverFlow extends Gallery {

	// mCamera是用来做�?D效果处理,比如Z轴方向上的平移,绕Y轴的旋转�?
	private Camera mCamera = new Camera();
	// mMaxRotationAngle是图片绕Y轴最大旋转角度,也就是屏幕最边上那两张图片的旋转角度
	private int mMaxRotationAngle = 50;
	// mMaxZoom是图片在Z轴平移的距离,z轴是面向桌面�?平移-200也就形成
	//在视觉上形成了放大缩小的效果�?
	private int mMaxZoom = -200;
	private int mCoveflowCenter;//保存视图的中�?
	private boolean mAlphaMode = true;//声明两种模式
	private boolean mCircleMode = true;

	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) 
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值