Skip to content

Animate activity transitions per Activity basis

rutura edited this page Apr 16, 2017 · 1 revision
  • Quick Code:
  @Override
    public void onClick(View v) {
        Intent i = new Intent(this, MainActivity.class);
        startActivity(i);
        overridePendingTransition(R.anim.activity_open_enter, R.anim.activity_open_exit);
    }

    @Override
    public void onBackPressed() {
        super.onBackPressed();
        overridePendingTransition(R.anim.activity_close_enter, R.anim.activity_close_exit);
    }
Clone this wiki locally