`
- 浏览:
42703 次
- 性别:
- 来自:
北京
-
- public class CubeAnimation extends Animation implements
- Animation.AnimationListener {
-
public static final int FACE_LEFT = 0;
-
public static final int FACE_RIGHT = 1;
-
private int mInd;
-
private float mFromDegrees;
-
private float mToDegrees;
-
private float mCenterX;
-
private float mCenterY;
-
private int mHorizonType = 1;
-
private float mHorizonValue = 0.5F;
-
private Camera mCamera;
-
private View mView;
-
-
public CubeAnimation(int ind) {
-
this.mInd = ind;
-
this.mFromDegrees = 0.0F;
-
this.mToDegrees = 90.0F;
- }
-
-
public CubeAnimation(Context context, AttributeSet attrs) {
-
super(context, attrs);
- TypedArray a = context.obtainStyledAttributes(attrs,
- R.styleable.CubeAnimation);
-
-
this.mFromDegrees = 0.0F;
-
this.mToDegrees = 90.0F;
-
-
Description d = Description.parseValue(a.peekValue(0));
-
this.mHorizonType = d.type;
-
this.mHorizonValue = d.value;
-
-
this.mInd = a.getInt(1, 0);
-
-
boolean t = a.getBoolean(2, true);
-
if (!(t)) {
-
this.mInd = (1 - this.mInd);
-
this.mToDegrees = 0.0F;
-
this.mFromDegrees = 90.0F;
- }
- a.recycle();
- }
-
-
public void onAnimationStart(Animation anim) {
-
this.mView.setVisibility(View.VISIBLE);
- }
-
-
public void onAnimationEnd(Animation anim) {
-
this.mView.setVisibility((this.mInd == 0) ? 0 : 8);
-
this.mInd = (1 - this.mInd);
- }
-
-
public void onAnimationRepeat(Animation anim) {
- }
-
-
public static void startCubeAnimation(Context context, int id, View view1,
- View view2) {
- XmlPullParser parser;
-
try {
- parser = context.getResources().getAnimation(id);
- AttributeSet attrs = Xml.asAttributeSet(parser);
-
-
int type = parser.getEventType();
-
int depth = parser.getDepth();
-
while (true) {
-
while (true) {
-
if ((((type = parser.next()) == 3) && (parser.getDepth() <= depth))
-
|| (type == 1))
-
break label172;
-
if (type == 2)
-
break;
- }
-
- String name = parser.getName();
-
-
if (name.equals("cube")) {
-
CubeAnimation anim1 = new CubeAnimation(context, attrs);
-
anim1.mInd = 1;
- anim1.mView = view1;
- anim1.setAnimationListener(anim1);
-
CubeAnimation anim2 = new CubeAnimation(context, attrs);
-
anim2.mInd = 0;
- anim2.mView = view2;
- anim2.setAnimationListener(anim2);
- view1.startAnimation(anim1);
- label172: view2.startAnimation(anim2);
- }
- }
-
} catch (Resources.NotFoundException ex) {
-
Log.e("CubeAnimation", "NotFoundException");
-
} catch (XmlPullParserException ex) {
-
Log.e("CubeAnimation", "XmlPullParserException");
-
} catch (IOException ex) {
-
Log.e("CubeAnimation", "IOException");
- }
- }
-
-
public void initialize(int width, int height, int parentWidth,
-
int parentHeight) {
-
super.initialize(width, height, parentWidth, parentHeight);
-
this.mCenterX = resolveSize(1, 0.5F, width, parentWidth);
-
this.mCenterY = resolveSize(1, 0.5F, height, parentHeight);
-
if (this.mHorizonType == 0) {
-
this.mHorizonValue /= height;
- }
-
-
this.mCamera = new Camera();
- }
-
-
protected void applyTransformation(float interpolatedTime, Transformation t) {
-
float fromDegrees = this.mFromDegrees;
-
float degrees = fromDegrees + (this.mToDegrees - fromDegrees)
- * interpolatedTime;
-
-
float centerX = this.mCenterX;
-
float centerY = this.mCenterY;
-
Camera camera = this.mCamera;
-
- Matrix matrix = t.getMatrix();
-
- camera.save();
-
-
float b = 0.0F;
-
float e = -this.mHorizonValue;
-
-
if (this.mInd == 0) {
-
degrees += 90.0F;
- }
-
- camera.rotateY(degrees);
-
- camera.getMatrix(matrix);
- camera.restore();
-
-
if (this.mInd == 0) {
-
matrix.preScale(-1.0F, 1.0F, centerX, 0.0F);
- }
-
-
float tranX = 320.0F * interpolatedTime;
-
-
float tranY = -centerY * e + b;
-
matrix.preTranslate(0.0F, centerY * e);
- matrix.postTranslate(tranX, tranY);
- }
-
-
protected static class Description {
-
public int type;
-
public float value;
-
-
static Description parseValue(TypedValue value) {
-
Description d = new Description();
-
if (value == null) {
-
d.type = 0;
-
d.value = 0.0F;
-
} else {
-
if (value.type == 6) {
-
d.type = (((value.data & 0xF) == 1) ? 2 : 1);
-
- d.value = TypedValue.complexToFloat(value.data);
-
return d;
- }
-
if (value.type == 4) {
-
d.type = 0;
- d.value = value.getFloat();
-
return d;
- }
-
if ((value.type >= 16) && (value.type <= 31)) {
-
d.type = 0;
- d.value = value.data;
-
return d;
- }
- }
-
-
d.type = 0;
-
d.value = 0.0F;
-
-
return d;
- }
- }
- }
分享到:
Global site tag (gtag.js) - Google Analytics
相关推荐
3D桌面效果的实现涉及多种技术,包括图形渲染、视差效果、动画过渡等。图形渲染是基础,通常利用OpenGL ES这样的图形库来创建和操纵3D模型。视差效果是通过改变不同物体相对于观察者的相对速度,模拟出深度感知,使...
3. **个性化设置**:3D桌面通常允许用户自定义背景、主题、动画效果等,以满足个人喜好。 4. **性能优化**:尽管提供了丰富的视觉效果,但优秀的3D桌面软件会尽可能地优化性能,确保在各种硬件配置下都能流畅运行。...
描述中提到的“实现Windows类似于Linux的3D桌面效果”,暗示了用户希望在Windows系统上体验到像Linux(例如Ubuntu的Unity桌面或KDE Plasma 5)那样的桌面环境。在Linux世界中,一些桌面环境如Compiz和Beryl提供了...
**标题解析:**“WPF版的3D桌面效果”这一标题揭示了我们将要讨论的主题是使用Windows Presentation Foundation(WPF)技术实现的一种3D视觉效果,它被应用于创建一个模拟桌面的展示。WPF是.NET Framework的一部分,...
3D桌面不仅限于简单的视觉效果,它还涉及到窗口管理、过渡动画、桌面小部件以及虚拟空间等多个方面。下面将详细讨论3D桌面的相关知识点。 1. **3D渲染技术**:3D桌面的核心是3D图形渲染,这涉及到OpenGL、DirectX等...
这款3D桌面不仅提升了手机的视觉效果,同时也增加了操作的趣味性和便捷性。 首先,3D桌面的核心特性在于其独特的三维动态展示。不同于传统的二维桌面,3D桌面允许用户在手机屏幕上滑动、旋转,呈现出多角度、多层次...
安装完成后,当用户离开电脑一段时间,这个3D动画就会自动播放,为桌面增添生动的视觉效果。 总的来说,"3D动画demo动画"是一个展示3D动画技术魅力的迷你项目,通过高效的技术手段在有限的存储空间内实现了丰富的...
在3D桌面中,用户可以体验到更为生动的动画和交互式元素,例如动态小部件、滑动菜单等,这些都增加了用户的使用乐趣。 在提供的压缩包文件中,我们看到以下几个文件: 1. Rainmeter-2.3.3安装文件.exe:这很可能是...
在这个项目中,很可能使用了属性动画,因为它允许对对象的任何属性进行动画处理,而且支持2D和3D变换,可以实现更复杂的桌面图标动态效果。 2. **自定义View** 实现桌面图标动画可能需要自定义View或 ViewGroup。...
如果没有摄像机,可以使用像是`recordmydesktop`这样的软件来录制桌面操作,与朋友分享你的3D桌面效果。 通过以上步骤,你应该能够成功地在Ubuntu 8.10上启用并享受3D桌面带来的视觉盛宴。当然,随着Ubuntu版本的...
3. **动画与交互**:许多3D桌面背景包含动态元素,如旋转的地球、漂浮的物体等,这需要编程来实现动画效果。同时,有些还允许用户与桌面背景进行互动,比如改变视角、触发特定事件等。 4. **资源管理**:由于3D桌面...
1. **3D桌面软件**:这可能是一个安装程序,让用户能在自己的电脑上实现3D桌面效果。 2. **主题和壁纸**:3D桌面可能包含各种3D设计的主题和壁纸,用户可以个性化自己的桌面环境。 3. **插件或扩展**:可能包含增强...
安装完成后,用户通常可以在桌面或者开始菜单找到启动插件的快捷方式,从而开始享受3D桌面带来的便捷和乐趣。 需要注意的是,虽然立方体桌面插件为用户带来了便利,但并非所有计算机配置都能支持这类特效。因此,在...
3. **平滑动画**:当用户在桌面进行操作,如拖动图标、打开或关闭窗口时,Windows 7会以平滑的动画效果呈现,增强了3D效果的真实感。 4. **视差滚动**:在滚动桌面或调整窗口大小时,图标的位置会有轻微的偏移,...
yodm3D桌面是一款专为追求个性化和视觉效果的用户设计的3D动态桌面软件。它通过创新的技术手段,将传统的二维桌面环境转化为三维空间,为用户提供了一个既实用又炫酷的操作体验。在这款软件中,你可以享受到如同电影...
总的来说,这个3D金属立体XP桌面主题通过独特的设计和丰富的动画效果,将用户的电脑桌面转变成一个充满科技魅力的空间,尤其适合那些追求个性和视觉享受的用户。安装使用后,用户不仅可以享受到独特的视觉体验,还能...
在本文中,我们将深入探讨如何使用WPF(Windows Presentation Foundation)技术创建一个具有3D动画效果的量杯图控件。WPF是.NET框架的一部分,它提供了丰富的图形、媒体和用户体验设计工具,使得开发出美观且功能...
提到“可以当作屏保用”,表明这个3D动画可能是设计成静态展示的,例如电脑桌面屏保,这类动画通常会有一个循环播放的序列,以保持画面的连续性和吸引力。 标签“3D 动画”进一步强调了主题的核心,3D动画的制作...