Skip to content

Fragment 之间的跳转动画 #21

Description

@chufengma

Fragment之间的事务是有先后顺序的。如果要设置动画,.setCustomAnimations 必须在replace前面:

    getSupportFragmentManager().beginTransaction()
                     .setCustomAnimations(android.R.anim.fade_in, android.R.anim.fade_out)
                     .replace(R.id.container, getResetPasswordFragment(phoneNumber, code), SubmitNewPasswordFragment.class.toString())
                     .addToBackStack("")
                     .commit();

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions