Google\'s Material Design guidelines prescribe the following transition for \"parent-to-child\" transitions when the parent consists of a list. (Material Design Guidelines)
you can animation using below code
Intent intent = new Intent(MainActivity.this, NFCTagInformationActivity.class);
Bundle options = ActivityOptionsCompat.makeClipRevealAnimation(
cvTagInfoSmall, 0, 0, cvTagInfoSmall.getWidth(), cvTagInfoSmall.getHeight()).toBundle();
ActivityCompat.startActivity(this, intent, options);
you can use makeScaleUpAnimation instead of makeClipRevealAnimation for different view transition animation.