flipping the order at some weekly view Animation actions

This commit is contained in:
tibbi 2020-03-20 17:37:53 +01:00
parent 19c54b48c8
commit 7a36e6be6a
2 changed files with 3 additions and 2 deletions

View File

@ -10,7 +10,7 @@
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.READ_CALENDAR"/>
<uses-permission android:name="android.permission.WRITE_CALENDAR"/>
<uses-permission android:name='android.permission.WAKE_LOCK'/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"

View File

@ -218,7 +218,8 @@ class WeekFragment : Fragment(), WeeklyCalendar {
startActivity(this)
}
}
animate().alpha(0f).setStartDelay(PLUS_FADEOUT_DELAY).withEndAction {
animate().setStartDelay(PLUS_FADEOUT_DELAY).alpha(0f).withEndAction {
beGone()
}
}