我是靠谱客的博主 忧伤小刺猬,最近开发中收集的这篇文章主要介绍Android_Activity开启动画的设置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Android开发过程中,很多时候我们需要Activity开启和关闭的时候有一定的动画效果,如何通过配置文件实现动画效果?
一般分为二步:

1、在res资源文件夹下面的anim(没有的话创建一个)创建.xml的动画文件

创建一个从上到下的动画文件top_to_bottom.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:fromYDelta="0"
android:toYDelta="100%p"
android:duration="200"
/>
</set> 

创建一个从下到上的动画文件bottom_to_top.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate  
    android:fromYDelta="100%p"  
    android:toYDelta="0"  
<span style="white-space:pre">	</span>android:duration="200"  
  /> 
</set> 

创建一个从左到右的动画文件top_to_bottom.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
    android:duration="400"
    android:fromXDelta="-100%p"
    android:toXDelta="0" />
</set> 

创建一个从右到左的动画文件top_to_bottom.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
    android:duration="400"
    android:fromXDelta="0%p"
    android:toXDelta="-100%p"/>
</set> 


2、代码中使用

设置启动动画

Intent intent = new Intent(this,DemoActivity.class);
startActivity(intent);
overridePendingTransition(R.anim.activity_open,0);
设置关闭动画:
finish();
overridePendingTransition(R.anim.bottom_end,0);

PS: 不需要状态出现时需要设置activity状态栏透明,在androidmanifest.xml里配置
android:theme="@android:style/Theme.Translucent"





最后

以上就是忧伤小刺猬为你收集整理的Android_Activity开启动画的设置的全部内容,希望文章能够帮你解决Android_Activity开启动画的设置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(67)

评论列表共有 0 条评论

立即
投稿
返回
顶部