Closed henrylao closed 3 years ago
Transitions in the original application have destination screens slide in from the right HomeActivity ==> ProfileActivity
HomeActivity.java
Intent profileIntent = new Intent(v.getContext(), ProfileActivity.class );
v.getContext().startActivity(profileIntent);
overridePendingTransition( R.anim.slide_from_left, R.anim.slide_to_right);
Core
Stretch