2 回答

TA貢獻1993條經驗 獲得超6個贊
在 res/anim 文件夾中添加這兩個文件。
R.anim.fade_in
<?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" />
R.anim.fade_out
<?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:duration="500" />
Java 代碼
// Check if we're running on Android 5.0 or higher
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
//Swap with transition
//start new activity here
activity.overridePendingTransition(R.anim.fade_in, R.anim.fade_out);
} else {
// Swap without transition
}
添加回答
舉報