How to perform a fade animation on Activity transition?

前端 未结 4 1826
伪装坚强ぢ
伪装坚强ぢ 2020-11-30 20:13

I am codifiying a transition effect between my logo activity and my Main activity, but I have the problem that before vanish the activity move to top:



        
4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-30 20:49

    Just re-posting answer by oleynikd because it's simple and neat

    Bundle bundle = ActivityOptionsCompat.makeCustomAnimation(getContext(),
        android.R.anim.fade_in, android.R.anim.fade_out).toBundle(); 
    startActivity(intent, bundle);
    

提交回复
热议问题