android - How to fade out activity when we finish it? -


i have activity button. if user clicks button, start service , finish activity. want fade out it. how it? tried ways seems not work.

mainactivity.this.overridependingtransition(r.anim.slide2, r.anim.slide); 

use above code.

here fade out animation code.

fade_out.xml <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/android"     android:fillafter="true" >      <alpha         android:duration="1000"         android:fromalpha="1.0"         android:interpolator="@android:anim/accelerate_interpolator"         android:toalpha="0.0" />  </set> 

Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -