Activity 1 淡出的切換效果 (intent_fade_out.xml)
1 2 3 4 5 6 | <?xml version="1.0" encoding="utf-8"?> <alpha xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator" android:fromAlpha="1.0" android:toAlpha="0.0" android:fillAfter="true" android:duration="500" /> |
Activity 2 淡入的切換效果 (intent_fade_in.xml)
1 2 3 4 5 | <?xml version="1.0" encoding="utf-8"?> <alpha xmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@android:anim/accelerate_interpolator" android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="500" /> |
沒有留言:
張貼留言