码迷,mamicode.com
首页 > 其他好文 > 详细

Frame animation

时间:2017-04-18 11:20:40      阅读:280      评论:0      收藏:0      [点我收藏+]

标签:guide   pre   log   efi   ima   mat   lan   file   blank   

Frame animation

  An animation defined in XML that shows a sequence of images in order (like a film).

    res/drawable/filename.xml

  Resource pointer to an AnimationDrawable.

    In Java: R.drawable.filename

  技术分享

  XML file saved at res/anim/rocket.xml:

  技术分享

  This application code will set the animation as the background for a View, then play the animation:

ImageView rocketImage = (ImageView) findViewById(R.id.rocket_image);
rocketImage.setBackgroundResource(R.drawable.rocket_thrust);
rocketAnimation = (AnimationDrawable) rocketImage.getBackground();
rocketAnimation.start();

 

参考:http://android.xsoftlab.net/guide/topics/resources/animation-resource.html#Frame

Frame animation

标签:guide   pre   log   efi   ima   mat   lan   file   blank   

原文地址:http://www.cnblogs.com/tekkaman/p/6726658.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!