歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android利用ViewFlipper實現屏幕切換動畫效果

1、屏幕切換指的是在同一個Activity內屏幕見的切換,最長見的情況就是在一個FrameLayout內有多個頁面,比如一個系統設置頁面;一個個性化設置頁面。 2、介紹ViewFilpper類

ViewFlipper

extends ViewAnimator
java.lang.Object    ↳ Android.view.View
   ↳ android.view.ViewGroup

   ↳ android.widget.FrameLayout


   ↳ android.widget.ViewAnimator



   ↳ android.widget.ViewFlipper

Class Overview

Simple ViewAnimator that will animate between two or more views that have been added to it. Only one child is shown at a time. If requested, can automatically flip between each child at a regular interval.

意思是:簡單的ViewAnimator之間,兩個或兩個以上的view加上動畫效果。只有一個小孩會顯示在一個時間。如果需要,每個孩子能自動翻轉之間在固定的時間間隔。

該類繼承了Framelayout類,ViewAnimator類的作用是為FrameLayout裡面的View切換提供動畫效果。

該類有如下幾個和動畫相關的函數:

 setInAnimation:設置View進入屏幕時候使用的動畫,該函數有兩個版本,一個接受單個參數,類型為android.view.animation.Animation;一個接受兩個參數,類型為Context和int,分別為Context對象和定義Animation的resourceID。  

 setOutAnimation: 設置View退出屏幕時候使用的動畫,參數setInAnimation函數一樣。

showNext: 調用該函數來顯示FrameLayout裡面的下一個View。

showPrevious: 調用該函數來顯示FrameLayout裡面的上一個View。

3、首選看一下定義四個動畫的xml文件: in_leftright.xml——從左到右進入屏幕 [html]
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android" >  
  3.     <translate  
  4.         android:duration="3000"  
  5.         android:fromXDelta="-100%p"  
  6.         android:toXDelta="0" />  
  7. </set>  
out_leftright.xml——從左到右出去屏幕 [html]
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android" >  
  3.     <translate  
  4.         android:duration="3000"  
  5.         android:fromXDelta="0"  
  6.         android:toXDelta="100%p" />  
  7. </set>  
in_rightleft.xml——從右到左進入屏幕 [html]
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android" >  
  3.     <translate  
  4.         android:duration="3000"  
  5.         android:fromXDelta="100%p"  
  6.         android:toXDelta="0" />  
  7. </set>  

out_rightleft.xml——從右到左出去屏幕 [html]
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android" >  
  3.     <translate  
  4.         android:duration="3000"  
  5.         android:fromXDelta="100%p"  
  6.         android:toXDelta="0" />  
  7. </set>  
4、定義main.xml文件 [html]
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent" android:layout_height="fill_parent"  
  4.     android:orientation="vertical">  
  5.     <ViewFlipper android:id="@+id/viewFlipper"  
  6.         android:layout_width="fill_parent" android:layout_height="fill_parent">  
  7.         <!-- 第一個頁面 -->  
  8.         <LinearLayout android:layout_width="fill_parent"  
  9.             android:layout_height="fill_parent" android:gravity="center">  
  10.             <ImageView android:layout_width="wrap_content"  
  11.                 android:layout_height="wrap_content" android:src="@drawable/a1" />  
  12.         </LinearLayout>  
  13.         <!-- 第二個頁面 -->  
  14.         <LinearLayout android:layout_width="fill_parent"  
  15.             android:layout_height="fill_parent" android:gravity="center">  
  16.             <ImageView android:layout_width="wrap_content"  
  17.                 android:layout_height="wrap_content" android:src="@drawable/a2"  
  18.                 android:gravity="center" />  
  19.         </LinearLayout>  
  20.         <!-- 第三個頁面 -->  
  21.         <LinearLayout android:layout_width="fill_parent"  
  22.             android:layout_height="fill_parent" android:gravity="center">  
  23.   
  24.             <ImageView android:layout_width="wrap_content"  
  25.                 android:layout_height="wrap_content" android:src="@drawable/a3"  
  26.                 android:gravity="center" />  
  27.         </LinearLayout>  
  28.         <!-- 第四個頁面 -->  
  29.         <LinearLayout android:layout_width="fill_parent"  
  30.             android:layout_height="fill_parent" android:gravity="center">  
  31.   
  32.             <ImageView android:layout_width="wrap_content"  
  33.                 android:layout_height="wrap_content" android:src="@drawable/a4"  
  34.                 android:gravity="center" />  
  35.         </LinearLayout>  
  36.     </ViewFlipper>  
  37. </LinearLayout>  
5、java代碼實現:
[java]
  1. public class SwitchTest2Activity extends Activity {  
  2.   
  3.     ViewFlipper viewFlipper = null;  
  4.     float startX;  
  5.   
  6.     public void onCreate(Bundle savedInstanceState) {  
  7.         super.onCreate(savedInstanceState);  
  8.         setContentView(R.layout.main);  
  9.   
  10.         init();  
  11.     }  
  12.   
  13.     private void init() {  
  14.         viewFlipper = (ViewFlipper) this.findViewById(R.id.viewFlipper);  
  15.     }  
  16.   
  17.     public boolean onTouchEvent(MotionEvent event) {  
  18.         switch (event.getAction()) {  
  19.         case MotionEvent.ACTION_DOWN:  
  20.             startX = event.getX();  
  21.             break;  
  22.         case MotionEvent.ACTION_UP:  
  23.   
  24.             if (event.getX() > startX) { // 向右滑動   
  25.                 viewFlipper.setInAnimation(this, R.anim.in_leftright);  
  26.                 viewFlipper.setOutAnimation(this, R.anim.out_leftright);  
  27.                 viewFlipper.showNext();  
  28.             } else if (event.getX() < startX) { // 向左滑動   
  29.                 viewFlipper.setInAnimation(this, R.anim.in_rightleft);  
  30.                 viewFlipper.setOutAnimation(this, R.anim.out_rightleft);  
  31.                 viewFlipper.showPrevious();  
  32.             }  
  33.             break;  
  34.         }  
  35.   
  36.         return super.onTouchEvent(event);  
  37.     }  
  38.   
  39. }  
6、效果圖: 在這裡看不出效果圖,我貼幾張圖片吧!!  從左向右滑滑到的結果
Copyright © Linux教程網 All Rights Reserved