效果图:

activity切换动画特效

 

结构图:

activity切换动画特效

 

测试代码:

布局:

 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"
 4     android:layout_height="wrap_content"
 5     android:background="@drawable/bg"
 6     android:orientation="vertical"
 7     android:paddingTop="10dp" >
 8 
 9     <Spinner
10         android:id="@+id/animation_sp"
11         android:layout_width="fill_parent"
12         android:layout_height="wrap_content" >
13     </Spinner>
14 
15     <Button
16         android:id="@+id/other_button"
17         android:layout_width="fill_parent"
18         android:layout_height="wrap_content"
19         android:text="打开Other窗口" >
20     </Button>
21 
22 </LinearLayout>
main.xml

相关文章: