2020年6月13日 星期六

android studio 畫面淡出淡入的切換效果 (含影片教學與專案) [android activity fade transition effect (With Video and Project)]

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" />


專案下載:https://ibf.tw/M0Cno

影片教學:

沒有留言:

張貼留言