tags:

views:

18

answers:

2

I have Tow Activities A and B. when i Switch between A to B i need animation for Activity B.When i pressesd back button in activity B the Activity B exit with Animation.

Please Answer to this question.

Hope your Qucik Response.

A: 

Hi

You can try writing finish() while calling B Activity from A activity

        Intent i = new Intent(A.this, B.class);
        startActivity(i);
        finish();
krunal shah
A: 

Intent intent = new Intent(aActivity.this,bActivity.class);

startActivity(intent);
overridePendingTransition(R.anim.zoom_exit,R.anim.disapear);
calypso