SquadHouseDev / SquadHouse

https://squadhousedev.github.io/
0 stars 1 forks source link

Home Page Core Features #7

Closed henrylao closed 3 years ago

henrylao commented 3 years ago

Core

Stretch

henrylao commented 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);