您的位置:首页 > 移动开发 > Android开发

Android Activity界面切换添加动画特效(转)

2013-10-09 09:16 369 查看
在Android 2.0之后有了overridePendingTransition() ,其中里面两个参数,一个是前一个activity的退出两一个activity的进入,

 

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.SplashScreen);

new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent mainIntent = new Intent(SplashScreen.this,     AndroidNews.class);
SplashScreen.this.startActivity(mainIntent);
SplashScreen.this.finish();

overridePendingTransition(R.anim.mainfadein,
R.anim.splashfadeout);
}
}, 3000);
}


上面的代码只是闪屏的一部分。上面的代码只是闪屏的一部分。上面的代码只是闪屏的一部分。上面的代码只是闪屏的一部分。上面的代码只是闪屏的一部分。上面的代码只是闪屏的一部分。

 

getWindow (). setWindowAnimations ( int ); 

这可没有上个好但是也可以 。

实现淡入淡出的效果

 

overridePendingTransition(Android.R.anim.fade_in,android.R.anim.fade_out); 

 由左向右滑入的效果

 

overridePendingTransition(Android.R.anim.slide_in_left,android.R.anim.slide_out_right); 

 

实现zoomin和zoomout,即类似iphone的进入和退出时的效果

overridePendingTransition(R.anim.zoomin, R.anim.zoomout);

 

新建zoomin.xml文件 

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:Android="http://schemas.android.com/apk/res/android"
Android:interpolator="@android:anim/decelerate_interpolator">
<scale Android:fromXScale="2.0" android:toXScale="1.0"
Android:fromYScale="2.0" android:toYScale="1.0"
Android:pivotX="50%p" android:pivotY="50%p"
Android:duration="@android:integer/config_mediumAnimTime" />
</set>


 

新建zoomout.xml文件

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:Android="http://schemas.android.com/apk/res/android"
Android:interpolator="@android:anim/decelerate_interpolator"
Android:zAdjustment="top">
<scale Android:fromXScale="1.0" android:toXScale=".5"
Android:fromYScale="1.0" android:toYScale=".5"
Android:pivotX="50%p" android:pivotY="50%p"
Android:duration="@android:integer/config_mediumAnimTime" />
<alpha Android:fromAlpha="1.0" android:toAlpha="0"
Android:duration="@android:integer/config_mediumAnimTime"/>
</set>


 

转载:http://androidstudy.iteye.com/blog/800660/ 点击打开链接
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: