29、高级绘图与动画技术全解析

高级绘图与动画技术全解析

在图形开发领域,掌握高级绘图和动画技术能够为应用程序增添丰富的交互性和视觉效果。本文将深入探讨曲线编辑和Core Animation这两个重要方面,通过详细的步骤和代码示例,帮助你轻松实现复杂的图形绘制和流畅的动画效果。

曲线编辑的实现

曲线编辑在图形设计和动画制作中具有广泛的应用,它可以帮助我们精确控制物体的运动轨迹和变化速率。下面将详细介绍如何实现一个曲线编辑应用。

准备工作
  1. 创建项目 :在Xcode中创建一个新的Cocoa项目,命名为CurveEdit,并开启垃圾回收功能。若使用Snow Leopard或更高版本,项目会自带CurveEdit_AppDelegate类;若使用Leopard,则需手动创建该类并添加到MainMenu.xib文件中。
  2. MVC架构搭建 :采用MVC架构,确保创建的视图可作为独立组件使用。创建一个名为CurveView的NSView子类,并在CurveEdit_AppDelegate类的.h和.m文件中进行如下设置:
// CurveEdit_AppDelegate.h
#import <Cocoa/Cocoa.h>
@interface CurveEdit_AppDelegate : NSObject {
    CGFloat cp1X;
    CGFloat cp1Y;
    CGFloat cp2X;
    CGFloat cp2Y;
    IBOutlet CurveView *curveView;
}
@property (assign) CGFloat cp1X;
@property (assign) CGFloat cp1Y;
@property (assign) CGFloat cp2X;
@property (assign) CGFloat cp2Y;
@end

// CurveEdit_AppDelegate.m
#import "CurveView.h"
#import "CurveEdit_AppDelegate.h"

@implementation CurveEdit_AppDelegate
@synthesize cp1X, cp1Y, cp2X, cp2Y;
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
    [curveView bind:@"cp1X" toObject:self withKeyPath:@"cp1X" options:nil];
    [curveView bind:@"cp1Y" toObject:self withKeyPath:@"cp1Y" options:nil];
    [curveView bind:@"cp2X" toObject:self withKeyPath:@"cp2X" options:nil];
    [curveView bind:@"cp2Y" toObject:self withKeyPath:@"cp2Y" options:nil];
    [self bind:@"cp1X" toObject:curveView withKeyPath:@"cp1X" options:nil];
    [self bind:@"cp1Y" toObject:curveView withKeyPath:@"cp1Y" options:nil];
    [self bind:@"cp2X" toObject:curveView withKeyPath:@"cp2X" options:nil];
    [self bind:@"cp2Y" toObject:curveView withKeyPath:@"cp2Y" options:nil];
    self.cp1X = 0.5;
    self.cp1Y = 0.0;
    self.cp2X = 0.5;
    self.cp2Y = 1.0;
}
@end
  1. 界面布局 :在Interface Builder中打开MainMenu.xib,从库中拖出一个Custom View,将其类设置为CurveView,调整大小为240x240,并连接app delegate的curveView outlet到该视图。再拖出两个NSForm,分别显示两个控制点的x和y值,并设置相应的绑定。
曲线绘制
  1. 设置边界 :在CurveView类中,设置固定边界,确保曲线始终在(0,0)到(1,1)的正方形内绘制。
// CurveView.h
#import <Cocoa/Cocoa.h>
@interface CurveView : NSView {
    NSRect myBounds;
    CGFloat cp1X;
    CGFloat cp1Y;
    CGFloat cp2X;
    CGFloat cp2Y;
}
@property (assign) CGFloat cp1X;
@property (assign) CGFloat cp1Y;
@property (assign) CGFloat cp2X;
@property (assign) CGFloat cp2Y;
@end

// CurveView.m
#import "CurveView.h"
@implementation CurveView
@synthesize cp1X, cp1Y, cp2X, cp2Y;
- (void)setCp1X:(CGFloat)f {
    cp1X = MAX(MIN(f, 1.0), 0.0);
    [self setNeedsDisplay:YES];
}
- (void)setCp1Y:(CGFloat)f {
    cp1Y = MAX(MIN(f, 1.0), 0.0);
    [self setNeedsDisplay:YES];
}
- (void)setCp2X:(CGFloat)f {
    cp2X = MAX(MIN(f, 1.0), 0.0);
    [self setNeedsDisplay:YES];
}
- (void)setCp2Y:(CGFloat)f {
    cp2Y = MAX(MIN(f, 1.0), 0.0);
    [self setNeedsDisplay:YES];
}
- (id)initWithFrame:(NSRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        myBounds = NSMakeRect(-0.1, -0.1, 1.2, 1.2);
        [self setBounds:myBounds];
    }
    return self;
}
- (void)setFrameSize:(NSSize)newSize {
    [super setFrameSize:newSize];
    [self setBounds:myBounds];
}
- (void)drawRect:(NSRect)rect {
    // Drawing code here.
}
@end
  1. 绘制曲线 :使用预处理器#define定义颜色和线宽,实现drawControlPointAtX:y:和drawRect:方法。
#define CP_RADIUS 0.1
#define CP_DIAMETER (CP_RADIUS*2)
#define BACKGROUND_COLOR [NSColor whiteColor]
#define GRID_STROKE_COLOR [NSColor lightGrayColor]
#define GRID_FILL_COLOR [NSColor colorWithCalibratedWhite:0.9 alpha:1.0]
#define CURVE_COLOR [NSColor blackColor]
#define LINE_TO_CP_COLOR [NSColor darkGrayColor]
#define CP_GRADIENT_COLOR1 [NSColor lightGrayColor]
#define CP_GRADIENT_COLOR2 [NSColor darkGrayColor]

- (void)drawControlPointAtX:(CGFloat)x y:(CGFloat)y {
    NSBezierPath *cp = [NSBezierPath bezierPathWithOvalInRect:
                        NSMakeRect(x - CP_RADIUS, y - CP_RADIUS,
                                   CP_DIAMETER, CP_DIAMETER)];
    NSGradient *g;
    g = [[NSGradient alloc] initWithStartingColor:CP_GRADIENT_COLOR1
                                endingColor:CP_GRADIENT_COLOR2];
    [g drawInBezierPath:cp
       relativeCenterPosition:NSMakePoint(0.0, 0.0)];
}

- (void)drawRect:(NSRect)rect {
    [NSGraphicsContext saveGraphicsState];

    // draw the background
    NSBezierPath *bg = [NSBezierPath bezierPathWithRoundedRect:myBounds
                                       xRadius:0.1 yRadius:0.1];
    [BACKGROUND_COLOR set];
    [bg fill];

    // draw the grid
    NSBezierPath *grid1 = [NSBezierPath bezierPath];
    [grid1 moveToPoint:NSMakePoint(0.0, 0.0)];
    [grid1 lineToPoint:NSMakePoint(1.0, 0.0)];
    [grid1 lineToPoint:NSMakePoint(1.0, 1.0)];
    [grid1 lineToPoint:NSMakePoint(0.0, 1.0)];
    [grid1 lineToPoint:NSMakePoint(0.0, 0.0)];

    [grid1 moveToPoint:NSMakePoint(0.5, 0.0)];
    [grid1 lineToPoint:NSMakePoint(0.5, 1.0)];
    [grid1 moveToPoint:NSMakePoint(0.0, 0.5)];
    [grid1 lineToPoint:NSMakePoint(1.0, 0.5)];
    [GRID_FILL_COLOR set];
    [grid1 fill];
    [GRID_STROKE_COLOR set];
    [grid1 setLineWidth:0.01];
    [grid1 stroke];

    // draw the lines leading to the control points
    NSBezierPath *cpLines = [NSBezierPath bezierPath];
    [cpLines moveToPoint:NSMakePoint(0.0, 0.0)];
    [cpLines lineToPoint:NSMakePoint(cp1X, cp1Y)];
    [cpLines moveToPoint:NSMakePoint(1.0, 1.0)];
    [cpLines lineToPoint:NSMakePoint(cp2X, cp2Y)];
    [LINE_TO_CP_COLOR set];
    [cpLines setLineWidth:0.01];
    [cpLines stroke];

    // draw the curve itself
    NSBezierPath *bp = [NSBezierPath bezierPath];
    [bp moveToPoint:NSMakePoint(0.0, 0.0)];
    [bp curveToPoint:NSMakePoint(1.0, 1.0)
        controlPoint1:NSMakePoint(cp1X, cp1Y)
        controlPoint2:NSMakePoint(cp2X, cp2Y)];
    [CURVE_COLOR set];
    [bp setLineWidth:0.01];
    [bp stroke];

    // draw the control points
    [self drawControlPointAtX:cp1X y:cp1Y];
    [self drawControlPointAtX:cp2X y:cp2Y];

    [NSGraphicsContext restoreGraphicsState];
}
鼠标交互

为了实现控制点的拖动功能,我们需要在CurveView类中添加鼠标事件处理方法。

// CurveView.h
@interface CurveView : NSView {
    NSRect myBounds;
    CGFloat cp1X;
    CGFloat cp1Y;
    CGFloat cp2X;
    CGFloat cp2Y;
    BOOL draggingCp1;
    BOOL draggingCp2;
}

// CurveView.m
static BOOL pointsWithinDistance(NSPoint p1, NSPoint p2, CGFloat d) {
    return pow((p1.x-p2.x), 2) + pow((p1.y - p2.y), 2) <= pow(d, 2);  
}

- (void)mouseDown:(NSEvent *)theEvent {
    NSPoint mouseLocation = [theEvent locationInWindow];
    NSPoint convertedLocation = [self convertPoint:mouseLocation fromView:nil];
    NSPoint cp1 = NSMakePoint(cp1X, cp1Y);
    NSPoint cp2 = NSMakePoint(cp2X, cp2Y);
    if (pointsWithinDistance(cp1, convertedLocation, CP_RADIUS)) {
        draggingCp1 = YES;
    } else if (pointsWithinDistance(cp2, convertedLocation, CP_RADIUS)){
        draggingCp2 = YES;
    }
    [self setNeedsDisplay:YES];
}

- (void)mouseDragged:(NSEvent *)theEvent {
    NSPoint mouseLocation = [theEvent locationInWindow];
    NSPoint convertedLocation = [self convertPoint:mouseLocation fromView:nil];
    if (draggingCp1) {
        self.cp1X = convertedLocation.x;
        self.cp1Y = convertedLocation.y;
    } else if (draggingCp2) {
        self.cp2X = convertedLocation.x;
        self.cp2Y = convertedLocation.y;
    }
    [self setNeedsDisplay:YES];
}

- (void)mouseUp:(NSEvent *)theEvent {
    draggingCp1 = NO;
    draggingCp2 = NO;
}
细节优化

为了提升用户体验,我们可以对控制点的绘制顺序和高亮显示进行优化。

// CurveView.m
#define CP_GRADIENT_HIGHLIGHT_COLOR1 [NSColor whiteColor]
#define CP_GRADIENT_HIGHLIGHT_COLOR2 [NSColor redColor]

- (void)drawControlPointAtX:(CGFloat)x y:(CGFloat)y dragging:(BOOL)dragging {
    NSBezierPath *cp = [NSBezierPath bezierPathWithOvalInRect:
                        NSMakeRect(x - CP_RADIUS, y - CP_RADIUS,
                                   CP_DIAMETER, CP_DIAMETER)];
    NSGradient *g;
    if (dragging) {
        g = [[NSGradient alloc] initWithStartingColor:CP_GRADIENT_HIGHLIGHT_COLOR1
                                    endingColor:CP_GRADIENT_HIGHLIGHT_COLOR2];
    } else {
        g = [[NSGradient alloc] initWithStartingColor:CP_GRADIENT_COLOR1
                                    endingColor:CP_GRADIENT_COLOR2];
    }
    [g drawInBezierPath:cp
       relativeCenterPosition:NSMakePoint(0.0, 0.0)];
}

- (void)drawRect:(NSRect)rect {
    // ...原有代码...
    // draw the control points
    if (draggingCp1) {
        [self drawControlPointAtX:cp2X y:cp2Y dragging:draggingCp2];
        [self drawControlPointAtX:cp1X y:cp1Y dragging:draggingCp1];
    } else {
        [self drawControlPointAtX:cp1X y:cp1Y dragging:draggingCp1];
        [self drawControlPointAtX:cp2X y:cp2Y dragging:draggingCp2];
    }
    [NSGraphicsContext restoreGraphicsState];
}
Core Animation基础

Core Animation是苹果公司为Mac OS X和iOS提供的强大图形动画框架,它可以让开发者轻松创建平滑的动画效果。下面将介绍Core Animation的基本概念和使用方法。

基本原理

Core Animation的核心是CALayer类,每个NSView可以选择关联一个CALayer。当为一个视图分配一个图层时,会递归地为其所有子视图也分配图层。CALayer与OpenGL结构关联,能够高效地渲染图形,而Core Animation的API则将开发者与OpenGL隔离开来,让开发者无需过多关注底层细节。

隐式动画

任何基于图层的视图都可以通过其animator代理进行动画处理。以下是一个简单的示例:

// MovingButton_AppDelegate.h
#import <Cocoa/Cocoa.h>
@interface MovingButton_AppDelegate : NSObject {}
- (IBAction)move:(id)sender;
@end

// MovingButton_AppDelegate.m
#import "MovingButton_AppDelegate.h"
@implementation MovingButton_AppDelegate
- (IBAction)move:(id)sender {
    NSRect senderFrame = [sender frame];
    NSRect superBounds = [[sender superview] bounds];
    senderFrame.origin.x = (superBounds.size.width - senderFrame.size.width) * drand48();
    senderFrame.origin.y = (superBounds.size.height - senderFrame.size.height) * drand48();
    [[sender animator] setFrame:senderFrame];
}
@end

通过使用animator代理,视图的位置变化会以动画的形式呈现,而不是立即改变。

显式动画

显式动画允许开发者更精确地控制动画的过程。以下是一个使用CABasicAnimation的示例:

#import <QuartzCore/QuartzCore.h>

- (IBAction)move:(id)sender {
    NSRect senderFrame = [sender frame];
    NSRect superBounds = [[sender superview] bounds];
    CABasicAnimation *a = [CABasicAnimation animationWithKeyPath:@"position"];
    a.fromValue = [NSValue valueWithPoint:senderFrame.origin];
    senderFrame.origin.x = (superBounds.size.width - senderFrame.size.width)*drand48();
    senderFrame.origin.y = (superBounds.size.height - senderFrame.size.height)*drand48();
    a.toValue = [NSValue valueWithPoint:senderFrame.origin];
    [[sender layer] addAnimation:a forKey:@"position"];
    [sender setFrame:senderFrame];
}

在使用显式动画之前,需要在Xcode项目中添加QuartzCore框架,并为需要动画的视图设置图层。

动画分组

在实际应用中,我们经常需要同时执行多个动画。Core Animation提供了动画分组的功能,确保多个动画能够同步执行。以下是一个示例项目的实现步骤:
1. 创建项目 :在Xcode中创建一个名为FlipIt的Cocoa项目,开启垃圾回收功能,并确保有FlipIt_AppDelegate类。
2. 定义接口 :在FlipIt_AppDelegate类中定义必要的属性和方法。

@interface FlipIt_AppDelegate : NSObject {
    IBOutlet NSBox *box;
    IBOutlet NSTabView *tabView;
    NSView *leftView;
    NSView *rightView;
    NSView *middleView;
    NSArray *items;
    NSInteger currentTabIndex;
}
- (IBAction)next:(id)sender;
- (IBAction)previous:(id)sender;
@end
  1. 界面布局 :在Interface Builder中进行界面布局,添加按钮、NSBox和NSTabView,并设置相应的绑定。
  2. 实现动画方法 :在FlipIt_AppDelegate.m文件中实现动画相关的方法。
#define ANIM_DURATION 1.0

- (void)applicationDidFinishLaunching:(NSNotification *)n {
    items = [tabView tabViewItems];
    currentTabIndex = [items count]-1;
    [self prepareRightSide];
    [[NSAnimationContext currentContext] setDuration:ANIM_DURATION];
    [self transitionInFromRight];
    currentTabIndex = 0;
    middleView = rightView;
}

- (void)prepareRightSide {
    NSInteger nextTabIndex = currentTabIndex + 1;
    if (nextTabIndex >= [items count])
        nextTabIndex = 0;

    rightView = [[items objectAtIndex:nextTabIndex] view];

    NSRect viewFrame = [box bounds];
    viewFrame.origin.x += viewFrame.size.width;

    [rightView setFrame:viewFrame];
    [rightView setAlphaValue:0.0];
    [box addSubview:rightView];
}

- (void)transitionInFromRight {
    [[rightView animator] setFrame:[box bounds]];
    [[rightView animator] setAlphaValue:1.0];
}

- (IBAction)next:(id)sender {
    [self prepareRightSide];

    [NSAnimationContext beginGrouping];
    [[NSAnimationContext currentContext] setDuration:ANIM_DURATION];
    [self transitionInFromRight];
    [self transitionOutToLeft];
    [NSAnimationContext endGrouping];

    currentTabIndex++;
    if (currentTabIndex >= [items count])
        currentTabIndex = 0;
    leftView = middleView;
    middleView = rightView;
}

- (void)transitionOutToLeft {
    NSRect newFrame = [middleView frame];
    newFrame.origin.x -= newFrame.size.width;
    [[middleView animator] setFrame:newFrame];
    [[middleView animator] setAlphaValue:0.0];
}

通过以上步骤,我们可以实现一个用户可以在多个“页面”之间切换的界面,并且切换过程会以动画的形式呈现。

综上所述,曲线编辑和Core Animation为图形开发提供了强大的功能,通过合理运用这些技术,开发者可以创建出更加生动、交互性更强的应用程序。希望本文的内容能够帮助你在图形开发的道路上更进一步。

高级绘图与动画技术全解析

显式动画的深入应用与优化

在前面我们已经了解了显式动画的基本使用方法,接下来进一步探讨如何对显式动画进行深入应用和优化。

动画时长与节奏控制

显式动画允许我们精确控制动画的时长和节奏。在之前的 MovingButton 示例中,我们可以通过设置 CABasicAnimation duration 属性来控制动画的时长,通过 timingFunction 属性来控制动画的节奏。

- (IBAction)move:(id)sender {
    NSRect senderFrame = [sender frame];
    NSRect superBounds = [[sender superview] bounds];
    CABasicAnimation *a = [CABasicAnimation animationWithKeyPath:@"position"];
    a.fromValue = [NSValue valueWithPoint:senderFrame.origin];
    senderFrame.origin.x = (superBounds.size.width - senderFrame.size.width)*drand48();
    senderFrame.origin.y = (superBounds.size.height - senderFrame.size.height)*drand48();
    a.toValue = [NSValue valueWithPoint:senderFrame.origin];

    // 设置动画时长为1秒
    a.duration = 1.0;
    // 设置动画节奏为缓入缓出
    a.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];

    [[sender layer] addAnimation:a forKey:@"position"];
    [sender setFrame:senderFrame];
}

通过上述代码,我们将动画的时长设置为1秒,并且将动画的节奏设置为缓入缓出,即动画开始和结束时速度较慢,中间速度较快。

结合曲线编辑器控制动画节奏

我们可以结合之前实现的曲线编辑器来动态控制动画的节奏。具体步骤如下:
1. 添加曲线编辑器类文件 :在 MovingButton 项目中,右键点击 Classes 组,选择 Add - Existing Files... ,将 CurveView.h CurveView.m 文件添加到项目中。
2. 修改控制器类接口 :在 MovingButton_AppDelegate.h 中添加 CurveView 的出口。

#import <Cocoa/Cocoa.h>
@class CurveView;
@interface MovingButton_AppDelegate : NSObject {
    IBOutlet CurveView *curveView;
}
- (IBAction)move:(id)sender;
@end
  1. 更新动画方法 :在 MovingButton_AppDelegate.m 中更新 move: 方法,使用曲线编辑器的控制点值来设置动画的节奏。
#import "CurveView.h"

- (IBAction)move:(id)sender {
    NSRect senderFrame = [sender frame];
    NSRect superBounds = [[sender superview] bounds];
    CABasicAnimation *a = [CABasicAnimation animationWithKeyPath:@"position"];
    a.fromValue = [NSValue valueWithPoint:senderFrame.origin];
    senderFrame.origin.x = (superBounds.size.width - senderFrame.size.width)*drand48();
    senderFrame.origin.y = (superBounds.size.height - senderFrame.size.height)*drand48();
    a.toValue = [NSValue valueWithPoint:senderFrame.origin];

    a.duration = 1.0;
    a.timingFunction = [CAMediaTimingFunction functionWithControlPoints:curveView.cp1X :curveView.cp1Y :curveView.cp2X :curveView.cp2Y];

    [[sender layer] addAnimation:a forKey:@"position"];
    [sender setFrame:senderFrame];
}

通过以上步骤,我们可以通过拖动曲线编辑器的控制点来动态改变按钮移动动画的节奏。

动画分组的实际应用

动画分组在实际开发中非常有用,它可以确保多个动画同时执行,从而实现更加复杂的动画效果。下面我们以 FlipIt 项目为例,详细介绍动画分组的实际应用。

项目概述

FlipIt 项目实现了一个用户可以在多个“页面”之间切换的界面,并且切换过程会以动画的形式呈现。我们将使用 NSAnimationContext 的分组功能来确保多个动画同时执行。

项目实现步骤
  1. 创建项目 :在Xcode中创建一个名为 FlipIt 的Cocoa项目,开启垃圾回收功能,并确保有 FlipIt_AppDelegate 类。
  2. 定义接口 :在 FlipIt_AppDelegate.h 中定义必要的属性和方法。
@interface FlipIt_AppDelegate : NSObject {
    IBOutlet NSBox *box;
    IBOutlet NSTabView *tabView;
    NSView *leftView;
    NSView *rightView;
    NSView *middleView;
    NSArray *items;
    NSInteger currentTabIndex;
}
- (IBAction)next:(id)sender;
- (IBAction)previous:(id)sender;
@end
  1. 界面布局 :在Interface Builder中进行界面布局,添加按钮、 NSBox NSTabView ,并设置相应的绑定。
  2. 实现动画方法 :在 FlipIt_AppDelegate.m 中实现动画相关的方法。
#define ANIM_DURATION 1.0

- (void)applicationDidFinishLaunching:(NSNotification *)n {
    items = [tabView tabViewItems];
    currentTabIndex = [items count]-1;
    [self prepareRightSide];
    [[NSAnimationContext currentContext] setDuration:ANIM_DURATION];
    [self transitionInFromRight];
    currentTabIndex = 0;
    middleView = rightView;
}

- (void)prepareRightSide {
    NSInteger nextTabIndex = currentTabIndex + 1;
    if (nextTabIndex >= [items count])
        nextTabIndex = 0;

    rightView = [[items objectAtIndex:nextTabIndex] view];

    NSRect viewFrame = [box bounds];
    viewFrame.origin.x += viewFrame.size.width;

    [rightView setFrame:viewFrame];
    [rightView setAlphaValue:0.0];
    [box addSubview:rightView];
}

- (void)transitionInFromRight {
    [[rightView animator] setFrame:[box bounds]];
    [[rightView animator] setAlphaValue:1.0];
}

- (IBAction)next:(id)sender {
    [self prepareRightSide];

    [NSAnimationContext beginGrouping];
    [[NSAnimationContext currentContext] setDuration:ANIM_DURATION];
    [self transitionInFromRight];
    [self transitionOutToLeft];
    [NSAnimationContext endGrouping];

    currentTabIndex++;
    if (currentTabIndex >= [items count])
        currentTabIndex = 0;
    leftView = middleView;
    middleView = rightView;
}

- (void)transitionOutToLeft {
    NSRect newFrame = [middleView frame];
    newFrame.origin.x -= newFrame.size.width;
    [[middleView animator] setFrame:newFrame];
    [[middleView animator] setAlphaValue:0.0];
}

next: 方法中,我们使用 [NSAnimationContext beginGrouping] [NSAnimationContext endGrouping] 来分组动画,确保 transitionInFromRight transitionOutToLeft 两个动画同时执行。

总结

通过本文的介绍,我们深入学习了曲线编辑和Core Animation的相关知识。曲线编辑可以帮助我们精确控制物体的运动轨迹和变化速率,而Core Animation则为我们提供了强大的动画功能,包括隐式动画、显式动画和动画分组。

在实际开发中,我们可以根据具体需求选择合适的技术来实现复杂的图形绘制和动画效果。同时,我们还可以通过优化代码和控制动画的时长、节奏等参数,来提升用户体验。

希望本文的内容能够帮助你在图形开发的道路上更进一步,创造出更加生动、交互性更强的应用程序。

流程图示例

graph TD;
    A[开始] --> B[创建项目];
    B --> C[定义接口];
    C --> D[界面布局];
    D --> E[实现动画方法];
    E --> F[测试运行];
    F --> G[结束];

表格示例

动画类型 特点 使用场景
隐式动画 简单易用,自动处理动画过程 简单的属性变化动画
显式动画 可精确控制动画过程 复杂的动画效果,需要控制时长、节奏等
动画分组 确保多个动画同时执行 多个动画协同工作的场景
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值