Google官方动画教程1

前言

最近我们android开发组开启了内部交流的活动,各位同事都讲得很好。自己android知识不丰富,好在之前在youtube上看到过一个Google官方讲android动画的视频,便跟着学习,纪录笔记,讲给大家。
后来同事提议何不把手机演示制作成gif的样式,然后写成博客跟大家分享,大家以后想做什么功能的动画就看这个博客上有没有类似的,这样岂不是很好。我深以为然,这就是这系列博客的由来,希望对大家能有所帮助。
Youtube上视频地址
Github上代码地址


1 BitmapScaling

BitmapFactory.Options bitmapOptions = new BitmapFactory.Options();
bitmapOptions.inSampleSize = sampleSize;
Bitmap scaledBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.jellybean_statue, bitmapOptions);
ImageView scaledImageView = new ImageView(this);
scaledImageView.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
scaledImageView.setImageBitmap(scaledBitmap);
container.addView(scaledImageView);

在上面的代码中,inSampleSize指定了最后得到图片和初始图片的尺寸比例。在得到最终图片的过程中,将会根据inSampleSize的值抽样读取像素,这样做的效率更高。
需要指出的是最后得到图片和初始图片的比例关系和inSampleSize成对数再取整的关系,对数的底为2。比如传入的inSampleSize为2,那么对2取对数为1,图片就缩小1倍,当传入的inSampleSize为3时,对2取对数再取整还是1,图片也缩小1倍。
程序运行后,如下面的图片所示:


BitmapScaling

2 RequestDuringLayout

这节课程主要告诉我们:在onLayout方法里面不要添加和移除view
我们都知道在onLayout方法里面将会对子元素进行位置摆放,当我们对子元素进行位置摆放完成以后,再添加或者移除元素,显然会导致新的变化难以得到显现。

RequestDuringLayout


3 ListViewAnimations

讲到如何优化ListView相比大家都很清楚,其中有一条就是复用不显示的view。由于手机上显示的ListView的条目是固定的,上下滑动的过程中,会有一些条目消失,一些条目展现。在这可以将消失的条目的view复用起来,用于显示新展现的条目。
大家一般都这么做着,可是在这需要指出的是:当ListView的条目有动画效果的时候,复用view需要特别注意
下面的动态图片很好地展示了这个问题:

ListViewAnimations_1

用户复用了view,会导致新出来的条目也带上了动画的效果。
对于这个问题,有两个解决方法:1、使用View Animation;2、设置TransientState。
使用View animation的时候,ListView内部会判断view上的动画有没有结束,没有结束的话则不会复用view。使用View animation也特别简单,下面一句代码就搞定了。

view.animate().setDuration(3000).alpha(0)

实现效果如下所示:


ListViewAnimations_2

设置TransientState则是给view设置一个标记,同样ListView发现view上有这个标记也就不会再复用这个view了,代码如下:

view.setHasTransientState(true);

实现效果如下所示:


ListViewAnimations_3

4 ListViewDeletion

对选中的条目进行动画删除,这里面也会涉及到一些问题,下面的动画很好地展示了这个问题。


ListViewDeletion_1
listview.setOnItemClickListener(new AdapterView.OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> parent, 
    final View view, int position, long id) {
        boolean checked = listview.isItemChecked(position);
        if (checked) {
            mCheckedViews.add(view);
        } else {
            mCheckedViews.remove(view);
        }
    }
});
for (int i = 0; i < mCheckedViews.size(); ++i) {
    final View checkedView = mCheckedViews.get(i);
    checkedView.animate().setDuration(3000).alpha(0).withEndAction(
    new Runnable() {
        @Override
        public void run() {
            checkedView.setAlpha(1);
        }
    });
}

可以看到新出来的,没有选中的view也执行了动画效果,这里的动画是使用了view动画。在上面的代码中,将勾选的view添加到列表中,后来滑动ListView,会复用相应的view,从而导致动画出现了问题。
可以按照下面的方式解决这个问题:

  1. 先找出ListView中已经勾选的子元素的位置;
  2. 根据1中得到的位置,判断子条目是否正在显示,如果正在显示则对相应的view执行动画,否则的话直接在一定时间过后移除子条目。
SparseBooleanArray checkedItems = listview.getCheckedItemPositions();
int positionOnScreen = position - listview.getFirstVisiblePosition();
if (positionOnScreen >= 0 &&
        positionOnScreen < listview.getChildCount()) {
    final View view = listview.getChildAt(positionOnScreen);
    // All set to fade this view out. Using ViewPropertyAnimator accounts
    // for possible recycling of views during the animation itself
    // (see the ListViewAnimations example for more on this).
    view.animate().setDuration(3000).alpha(0).withEndAction(
    new Runnable() {
        @Override
        public void run() {
            view.setAlpha(1);
            adapter.remove(item);
        }
    });
} else {
    // Not animating the view, but don't delete it yet to avoid making the
    // list shift due to offscreen deletions
    v.postDelayed(new Runnable() {
        @Override
        public void run() {
            adapter.remove(item);
        }
    }, 3000);
}

运行效果如下面动态图片所示:


ListViewDeletion_2

5 Bounce Animations

在这节课程中,讲述了三个知识点:

  1. 通过anim.setRepeatCount(ValueAnimator.INFINITE) 设置动画播放的次数;
  2. 通过anim.setRepeatMode(ValueAnimator.REVERSE) 设置动画重复播放的模式;
  3. 通过anim.setInterpolator(new AccelerateInterpolator()) 设置不同的插值器。

下面的两个动态图片,一个展示了线性插值器,一个展示了加速插值器。可以看到加速插值器更像我们日常生活中的弹性效果。


BounceAnimations_1

BounceAnimations_2

6 Property Animations

Property Animations是通过反射从而实现动画的,需要先设置需要变化的属性。当我们设置变化的为“rotation”的时候,android会通过反射技术找到view的setRotation(float rotation)方法,从而在插值器的影响下不断调用这个方法,从而实现了整个动画过程。Property Animations可以同时设置改变多个属性,AnimatorSet可以将多个动画连接起来。

// Spin the button around in a full circle
ObjectAnimator rotateAnimation =
        ObjectAnimator.ofFloat(rotateButton, View.ROTATION, 360);
rotateAnimation.setRepeatCount(1);
rotateAnimation.setRepeatMode(ValueAnimator.REVERSE);

// Scale the button in X and Y. Note the use of PropertyValuesHolder to animate
// multiple properties on the same object in parallel.
PropertyValuesHolder pvhX = PropertyValuesHolder.ofFloat(View.SCALE_X, 2);
PropertyValuesHolder pvhY = PropertyValuesHolder.ofFloat(View.SCALE_Y, 2);
ObjectAnimator scaleAnimation = ObjectAnimator.ofPropertyValuesHolder(scaleButton, pvhX, pvhY);
scaleAnimation.setRepeatCount(1);
scaleAnimation.setRepeatMode(ValueAnimator.REVERSE);

// Run the animations above in sequence
AnimatorSet setAnimation = new AnimatorSet();
setAnimation.play(translateAnimation).after(alphaAnimation).before(rotateAnimation);
setAnimation.play(rotateAnimation).before(scaleAnimation);

动画效果,如下面图片所示:


PropertyAnimations

7 KeyFrame Animation

帧动画使用的情况也很多,帧动画实现起来也比较简单。

// Create the AnimationDrawable in which we will store all frames of the animation
final AnimationDrawable animationDrawable = new AnimationDrawable();
for (int i = 0; i < 10; ++i) {
    animationDrawable.addFrame(getDrawableForFrameNumber(i), 300);
}
// Run until we say stop
animationDrawable.setOneShot(false);
imageview.setImageDrawable(animationDrawable);
// When the user clicks on the image, toggle the animation on/off
imageview.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        if (animationDrawable.isRunning()) {
            animationDrawable.stop();
        } else {
            animationDrawable.start();
        }
    }
});

AnimationDrawable可以往里面添加各种Drawable并且规定它们的显示时间,从而完成了帧动画的设置。
展示效果如下所示:


KeyframeAnimation

8 CrossFading Animations

这节课讲述了如何使用TransitionDrawable来实现在两个drawable之间渐变转换,代码如下所示:

final ImageView imageview = (ImageView) findViewById(R.id.imageview);
// Create red and green bitmaps to cross-fade between
Bitmap bitmap0 = Bitmap.createBitmap(500, 500, Bitmap.Config.ARGB_8888);
Bitmap bitmap1 = Bitmap.createBitmap(500, 500, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap0);
canvas.drawColor(Color.RED);
canvas = new Canvas(bitmap1);
canvas.drawColor(Color.GREEN);
BitmapDrawable drawables[] = new BitmapDrawable[2];
drawables[0] = new BitmapDrawable(getResources(), bitmap0);
drawables[1] = new BitmapDrawable(getResources(), bitmap1);

// Add the red/green bitmap drawables to a TransitionDrawable. They are layered
// in the transition drawalbe. The cross-fade effect happens by fading one out and the
// other in.
final TransitionDrawable crossfader = new TransitionDrawable(drawables);
imageview.setImageDrawable(crossfader);

// Clicking on the drawable will cause the cross-fade effect to run. Depending on
// which drawable is currently being shown, we either 'start' or 'reverse' the
// transition, which determines which drawable is faded out/in during the transition.
imageview.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        if (mCurrentDrawable == 0) {
            crossfader.startTransition(500);
            mCurrentDrawable = 1;
        } else {
            crossfader.reverseTransition(500);
            mCurrentDrawable = 0;
        }
    }
});

也可以在xml文件中直接定义TransitionDrawable,定义后直接当作drawable使用即可。代码如下所示:

<?xml version="1.0" encoding="utf-8"?>
<transition xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:drawable="@drawable/image01"/>
    <item android:drawable="@drawable/image02"/>
</transition>

先前转换调用startTransition(int durationMillis),向后调用reverseTransition(int duration),其中durationMillis指渐变的时间。
展示效果如下所示:


CrossFadingAnimations

9 Window Animations

一般在开启一个新的activity的时候可以设置相关动画,在Jellybean开始,可以设置缩放类型的和Thumbnail缩放类型。

// By default, launching a sub-activity uses the system default for window animations
Intent subActivity = new Intent(WindowAnimations.this, SubActivity.class);
startActivity(subActivity);
// Custom animations allow us to do things like slide the next activity in as we slide this activity out
// Using the AnimatedSubActivity also allows us to animate exiting that activity - see that activity for details
Intent subActivity = new Intent(WindowAnimations.this, AnimatedSubActivity.class);
// The enter/exit animations for the two activities are specified by xml resources
Bundle translateBundle = ActivityOptions.makeCustomAnimation(WindowAnimations.this, R.anim.slide_in_left, R.anim.slide_out_left).toBundle();
startActivity(subActivity, translateBundle);
// Starting in Jellybean, you can provide an animation that scales up the new activity from a given source rectangle
Intent subActivity = new Intent(WindowAnimations.this, AnimatedSubActivity.class);
Bundle scaleBundle = ActivityOptions.makeScaleUpAnimation(v, 0, 0, v.getWidth(), v.getHeight()).toBundle();
startActivity(subActivity, scaleBundle);
/ Starting in Jellybean, you can also provide an animation that scales up the new
// activity from a given bitmap, cross-fading between the starting and ending representations. Here, we scale up from a thumbnail image of the final sub-activity
BitmapDrawable drawable = (BitmapDrawable) thumbnail.getDrawable();
Bitmap bm = drawable.getBitmap();
Intent subActivity = new Intent(WindowAnimations.this, AnimatedSubActivity.class);
Bundle scaleBundle = ActivityOptions.makeThumbnailScaleUpAnimation(thumbnail, bm, 0, 0).toBundle();
startActivity(subActivity, scaleBundle);

展示效果如下所示:


WindowAnimations

10 View Animations

实现View Animations有两种方式:1、代码直接写;2、xml实现。
1、代码直接实现:

TranslateAnimation translateAnimation =
                new TranslateAnimation(Animation.ABSOLUTE, 0,
                Animation.RELATIVE_TO_PARENT, 1,
                Animation.ABSOLUTE, 0, Animation.ABSOLUTE, 100);
translateAnimation.setDuration(1000);
translateButton.startAnimation(translateAnimation);

2、xml实现

<translate xmlns:android="http://schemas.android.com/apk/res/android"
        android:fromXDelta="0" android:toXDelta="100%p"
        android:fromYDelta="0" android:toYDelta="100"
        android:duration="1000" />
translateButton.startAnimation(AnimationUtils.loadAnimation(ViewAnimations.this, R.anim.translate_anim));

展示效果如下所示:


ViewAnimations

为了避免文章图片过多,第一篇文章就讲述到这吧,如果觉得有点意思,可以继续阅读这个系列的另外两篇文章。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,126评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,254评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,445评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,185评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,178评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,970评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,276评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,927评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,400评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,883评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,997评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,646评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,213评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,204评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,423评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,423评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,722评论 2 345

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,498评论 25 707
  • 说明 承接之前教程1,继续讲解Google官方动画教程,接下来的教程将会更复杂一下,也会更有意思一些。Youtub...
    风从影阅读 780评论 0 13
  • 内容抽屉菜单ListViewWebViewSwitchButton按钮点赞按钮进度条TabLayout图标下拉刷新...
    皇小弟阅读 46,708评论 22 664
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,022评论 4 62
  • 是不是想起村上春树的《当我在跑步时我在想什么》啦? 这两天用kindle看完了笛安的龙城三部曲,和着些许头痛,和些...
    十野阅读 492评论 0 0