1. 程式人生 > >Android實現Activity介面切換新增動畫特效的方法

Android實現Activity介面切換新增動畫特效的方法

本文以例項形式展示了Android實現Activity介面切換新增動畫特效的方法,對於Android程式設計人員來說有很好的參考借鑑價值。具體方法如下:

瞭解Android程式設計的人應該知道,在Android 2.0之後有了overridePendingTransition(),其中裡面兩個引數,一個是前一個activity的退出,另一個activity的進入。

現看看下面這段示例程式碼:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

@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); 

上面的程式碼只是閃屏的一部分。

?

1

getWindow().setWindowAnimations(int); 

這可沒有上個好但是也可以 。

實現淡入淡出的效果:

?

1

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

由左向右滑入的效果:

?

1

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

實現zoomin和zoomout,即類似iphone的進入和退出時的效果:

?

1

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

新建zoomin.xml檔案:

?

1

2

3

4

5

6

7

8

<?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檔案:

?

1

2

3

4

5

6

7

8

9

10

11

<?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

相信本文所述示例對大家的Android程式設計有一定的借鑑價值。

您可能感興趣的文章: