安卓动画知识总结 Animation AnimationSet LayoutAnimation

本文由PurpleSword(jzj1993)原创,转载请注明
原文网址 http://blog.csdn.net/jzj1993

常见动画有几种
控件View的动画(如Dialog窗口中的圆形进度条)
空间Window的动画(如DialogWindow,PopupWindow的动画,Activity切换时整个Window页面的动画)
ViewGroup的LayoutAnimation动画,每个子控件按照设定的顺序、延迟播放动画

动画常用anim/*.xml定义

xml中定义动画,可直接使用<translate><scale><alpha><rotate>标签直接定义,也可以放在<set>标签中,里面定义的动画将同时开始播放。
两者都可使用AnimationUtils.loadAnimation方法加载。如果是set标签定义,加载时返回的是AnimationSet实例(AnimationSet继承自Animation)
在set标签中设置的一些属性,会直接覆盖它里面定义动画的对应属性,而 AnimationSet的另外一些从Animation继承的属性则无效,下面是AnimationSet类的官方说明。

Represents a group of Animations that should be played together. The transformation of each individual animation are composed together into a single transform. If AnimationSet sets any properties that its children also set (for example, duration or fillBefore), the values of AnimationSet override the child values.

The way that AnimationSet inherits behavior from Animation is important to understand. Some of the Animation attributes applied to AnimationSet affect the AnimationSet itself, some are pushed down to the children, and some are ignored, as follows:

    • duration, repeatMode, fillBefore, fillAfter: These properties, when set on an AnimationSet object, will be pushed down to all child animations.
    • repeatCount, fillEnabled: These properties are ignored for AnimationSet.
    • startOffset, shareInterpolator: These properties apply to the AnimationSet itself.
Starting with android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH, the behavior of these properties is the same in XML resources and at runtime (prior to that release, the values set in XML were ignored for AnimationSet). That is, calling setDuration(500) on an AnimationSet has the same effect as declaring android:duration="500" in an XML resource for an AnimationSet object.


常规补间动画:弹跳(移动)

Layout/activity_welcome_anim.xml
(0%p表示占父组件尺寸的百分比)

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
    <translate
        android:duration="500"
        android:fromXDelta="0"
        android:fromYDelta="0%p"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:toXDelta="0"
        android:toYDelta="42%p" />
    <translate
        android:duration="350"
        android:fromXDelta="0"
        android:fromYDelta="0"
        android:interpolator="@android:anim/decelerate_interpolator"
        android:startOffset="500"
        android:toXDelta="0"
        android:toYDelta="-21%p" />
    <translate
        android:duration="350"
        android:fromXDelta="0"
        android:fromYDelta="0"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:startOffset="850"
        android:toXDelta="0"
        android:toYDelta="21%p" />
    <translate
        android:duration="250"
        android:fromXDelta="0"
        android:fromYDelta="0"
        android:interpolator="@android:anim/decelerate_interpolator"
        android:startOffset="1200"
        android:toXDelta="0"
        android:toYDelta="-10%p" />
    <translate
        android:duration="250"
        android:fromXDelta="0"
        android:fromYDelta="0"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:startOffset="1450"
        android:toXDelta="0"
        android:toYDelta="10%p" />
    <translate
        android:duration="150"
        android:fromXDelta="0"
        android:fromYDelta="0"
        android:interpolator="@android:anim/decelerate_interpolator"
        android:startOffset="1700"
        android:toXDelta="0"
        android:toYDelta="-5%p" />
    <translate
        android:duration="150"
        android:fromXDelta="0"
        android:fromYDelta="0"
        android:interpolator="@android:anim/accelerate_interpolator"
        android:startOffset="1850"
        android:toXDelta="0"
        android:toYDelta="5%p" />
</set>

再例如常规补间动画:缩放、透明度

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >
    <scale
        android:duration="800"
        android:fromXScale="0.0"
        android:fromYScale="0.0"
        android:pivotX="50%"
        android:pivotY="50%"
        android:toXScale="1.0"
        android:toYScale="1.0" />
    <alpha
        android:duration="800"
        android:fromAlpha="0.0"
        android:toAlpha="1.0" />
</set>

再如上浮效果(移动、透明度)

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/linear_interpolator" >
    <translate
        android:duration="500"
        android:fromXDelta="0"
        android:fromYDelta="5%"
        android:toXDelta="0"
        android:toYDelta="0%" />
    <alpha
        android:duration="500"
        android:fromAlpha="0.0"
        android:toAlpha="1.0" />
    <alpha
        android:duration="100"
        android:fromAlpha="1.0"
        android:startOffset="1400"
        android:toAlpha="1.0" />
</set>

可使用Java程序加载

    this.setContentView(R.layout.activity_welcome);
    anim = AnimationUtils.loadAnimation(this,
            R.anim.welcome_anim);
    // 动画效果执行完毕后,View对象保留在终止的位置 
    anim.setFillEnabled(true);
    anim.setFillAfter(true);

    this.findViewById(R.id.point).setAnimation(anim);


还可设置动画监听器

    anim.setAnimationListener(listener);

    /**
     * 动画监听器
     */
    private AnimationListener listener = new AnimationListener() {
        @Override
        public void onAnimationEnd(Animation animation) {
            // startMain();
        }
        @Override
        public void onAnimationStart(Animation animation) {
        }
        @Override
        public void onAnimationRepeat(Animation animation) {
        }
    };

在Dialog中动画的加载

        LayoutInflater inflater = LayoutInflater.from(context);
        View v = inflater.inflate(R.layout.dialog_voicenull);
        ImageView img = (ImageView) v.findViewById(R.id.dialog_img);
        Animation anim = AnimationUtils.loadAnimation(context,
                R.anim.center_rotate_repeat);
        img.startAnimation(anim);
        new AlertDialog.Builder(context).setView(v);

给整个Dialog设置动画
    dialog.getWindow().setWindowAnimations(R.style.quick_scale_anim);

给PopupWindow设置动画
    pop.setAnimationStyle(R.style.quick_scale_anim);



Activity的切换动画

    代码实现Activity切换动画

    startActivity(new Intent(this, ListAlarm.class));
    overridePendingTransition(R.anim.anim_activity_in,
                R.anim.anim_activity_unchange);

    或者
    ActivityGuide.this.finish();
    overridePendingTransition(R.anim.alpha_stay, R.anim.alpha_exit);

    在XML中定义Activity切换动画

Activity切换动画:不能设置SingleInstance属性,会导致动画失效

    <style name="activityAnimation" parent="@android:style/Animation">
        <item name="android:windowEnterAnimation">@null</item>
        <item name="android:windowExitAnimation">@null</item>
        <!-- 新的Activity启动时Enter动画 -->
        <item name="android:activityOpenEnterAnimation">@anim/slide_left_in</item>
        <!-- 新的Activity启动时原有Activity的Exit动画 -->
        <item name="android:activityOpenExitAnimation">@anim/keep</item>
        <!-- 新的Activity退出时原有ActivityEnter动画 -->
        <item name="android:activityCloseEnterAnimation">@anim/keep</item>
        <!-- 新的Activity退出时Exit动画 -->
        <item name="android:activityCloseExitAnimation">@anim/slide_right_out</item>
    </style>


    Manifest.xml
    <application
        android:theme="@style/app_theme" >
        <activity
            android:name=".ui.ActivityWelcome"
            android:theme="@style/app_theme_fullscreen" >
        </activity>
    </application>

    style.xml
    <style name="app_theme" parent="@android:style/Theme.Light.NoTitleBar">
        <item name="android:windowAnimationStyle">@style/activity_anim</item>
    </style>

    <style name="activity_anim">
        <item name="android:windowEnterAnimation">@anim/quick_alpha_enter</item>
        <item name="android:windowExitAnimation">@anim/quick_alpha_stay</item>
    </style>

    anim/quick_alpha_enter.xml
    anim/quick_alpha_stay.xml


LayoutAnimation

1、在 layout_anim_item.xml 中定义子View动画


2、在 layout_anim.xml 中定义Layout动画,并引用子View动画

<layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
    android:animation="@anim/layout_anim_item"
    android:animationOrder="normal"
    android:delay="0.25" />


3、在ViewGroup中引用自定义Layout动画
<ViewGroup
    android:layoutAnimation="@anim/layout_anim" >

近期自己搭建了一个网站,以后我的博客会转移到个人网站,欢迎大家关注~ 网址是http://purplesword.info



本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/242164.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Activity和Service通信 Bind方式

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993在Service中自定义Binder类&#xff0c;实现方法getService&#xff1b;覆写Service的onBind方法public class MainService extends Service {Overridepublic void onCreate() {sup…

语义分析 文本矛盾点解析_关于解析文本的几点思考

语义分析 文本矛盾点解析Yesterday I wrote about three course modules in Oslo, and the fact that most of the presentation material is online. Today I will be writing about one lesson in the curriculum about ‘Parsing’. First I will share a few general thoug…

专家建议用南方的养老金拿去救济东北,网友炸锅了

随着我国老龄化的不断加剧&#xff0c;养老资金已经成为了社会要面临的一个艰巨问题&#xff0c;特别是在东北地区&#xff0c;这些年来东北地区经济发展比较缓慢&#xff0c;导致养老资金收入也跟着放慢&#xff0c;目前有的省份养老基金结余已经为负数&#xff0c;这对于如何…

安卓屏幕尺寸相关知识

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj19931.px Pixels,像素值2.dp dip device independent pixel,设备独立像素(安卓专用虚拟像素单位)3.density,屏幕密度(1)近似换算关系 px dip*density, dip px/density(2)相同像素值…

明明知道银行存款会贬值,为什么还有那么多人把钱放在银行?

钱存在银行肯定是贬值的&#xff0c;但是对于那些风险意识比较低&#xff0c;或者从风险承受能力比较低的人来说&#xff0c;你除了存在银行&#xff0c;还有别的更好选择吗&#xff1f;没有&#xff01;银行存款利率基本上跑不赢通货膨胀。最近几年&#xff0c;我国货币量的不…

pandas 机器学习_机器学习的PANDAS

pandas 机器学习Pandas is one of the tools in Machine Learning which is used for data cleaning and analysis. It has features which are used for exploring, cleaning, transforming and visualizing from data.Pandas是机器学习中用于数据清理和分析的工具之一。 它具…

家族信托是什么东东?为何受到富豪们的大力吹捧?

说到信托相信很多人都知道是怎么回事&#xff0c;但是说到家族信托就未必有人知道是啥回事了。不过大家对于家族信托不了解&#xff0c;并不妨碍家族信托的迅猛发展&#xff0c;最近几年家族信托这个概念在富豪圈已经成为了一个热门的话题&#xff0c;很多有钱的人都在尝试搞家…

安卓SlidingDrawer

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993Layout<RelativeLayout xmlns:android"http://schemas.android.com/apk/res/android"android:layout_width"match_parent"android:layout_height"wrap…

鸭子目标检测数据集VOC格式300张

鸭子是一种较为常见的水禽&#xff0c;属于鸟纲鸭科动物&#xff0c;是人们生活中的常见动物之一。鸭子的外形特征独特&#xff0c;身体小巧灵活&#xff0c;身长约30-40厘米左右&#xff0c;体重在1-2千克左右。鸭子的嘴宽大而扁平&#xff0c;呈圆形&#xff0c;嘴边有着细小…

为什么支付宝不提供房贷业务?原因在这里

大家都知道房贷是银行的一块肥肉&#xff0c;也是银行利润最丰厚最稳定的一部分&#xff0c;目前房贷业务占到银行整体业务基本上都是在30%以上&#xff0c;有部分银行甚至达到50%以上。尽管房贷业务和很肥&#xff0c;但是并不是所有银行都会开展房贷业务&#xff0c;比如蚂蚁…

文本摘要提取_了解自动文本摘要-1:提取方法

文本摘要提取Text summarization is commonly used by several websites and applications to create news feed and article summaries. It has become very essential for us due to our busy schedules. We prefer short summaries with all the important points over read…

安卓json的解析

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993方法一&#xff08;使用安卓包含的JSON解析类&#xff09;import org.json.JSONArray;import org.json.JSONObject;import org.json.JSONTokener;try {JSONTokener tokener new JS…

安卓线程相关 HandlerThread Handler Thread Looper Message Runnable

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993安卓主线程&#xff08;UI线程&#xff09;是线程不安全的&#xff1a;对UI控件的操作都应在主线程中完成&#xff1b;UI线程不应执行耗时操作&#xff0c;以免程序不响应&#xff…

用户细分_基于购买历史的用户细分

用户细分介绍 (Introduction) The goal of this analysis was to identify different user groups based on the deals they have availed, using a discount app, in order to re-target them with offers similar to ones they have availed in the past.该分析的目的是使用折…

一个字节的网络漫游故事独白

大家好&#xff0c;给大家介绍一下&#xff0c;我是一个字节。相比于你们人类据说即将达到的百岁人生的寿命&#xff0c;我的一生简直不直一提&#xff08;我只能存活零点几个毫秒&#xff09;。也许只有那些码农才会了解我&#xff0c;而且也只有一部分码农。那些整天做业务的…

swap最大值和平均值_SWAP:Softmax加权平均池

swap最大值和平均值Blake Elias is a Researcher at the New England Complex Systems Institute.Shawn Jain is an AI Resident at Microsoft Research.布莱克埃里亚斯 ( Blake Elias) 是 新英格兰复杂系统研究所的研究员。 Shawn Jain 是 Microsoft Research 的 AI驻地 。 …

Activity和Service通信 使用BroadcastReceiver

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993Activity中编写/*** 广播接收器*/public class MsgReceiver extends BroadcastReceiver {Overridepublic void onReceive(Context context, Intent intent) {Log.v("", &…

该酷的酷该飒的飒,穿出自己的潮流前线

精选匈牙利白鸭绒填充&#xff0c;柔软蓬松 舒适感很强&#xff0c;回弹性好 没有什么异味很干净安全 宝贝穿上去保暖又舒适 树脂拉链&#xff0b;金属按扣&#xff0c;松紧帽檐&#xff0b;袖口 下摆还做了可调节抽绳&#xff0c;细节满满防风保暖很nice 短款设计相较于…

pytorch卷积可视化_使用Pytorch可视化卷积神经网络

pytorch卷积可视化Filter and Feature map Image by the author筛选和特征图作者提供的图像 When dealing with image’s and image data, CNN are the go-to architectures. Convolutional neural networks have proved to provide many state-of-the-art solutions in deep l…

Golang之轻松化解defer的温柔陷阱

defer是Go语言提供的一种用于注册延迟调用的机制&#xff1a;让函数或语句可以在当前函数执行完毕后&#xff08;包括通过return正常结束或者panic导致的异常结束&#xff09;执行。深受Go开发者的欢迎&#xff0c;但一不小心就会掉进它的温柔陷阱&#xff0c;只有深入理解它的…