FragmentTransaction的setCustomAnimation()给出错误

时间:2016-05-26 09:06:05

标签: android android-fragments

在我的代码中,在transaction.setCustomAnimations()行上,IDE显示:

Expected Resource of Type Animator

这是我的代码:

import android.app.Fragment;
import android.app.FragmentTransaction;

private void loadPasswordFragment() {
    FragmentTransaction transaction = getFragmentManager().beginTransaction();
    Fragment mFragment = new ForgotWithPasswordFrag();
    transaction.setCustomAnimations( R.anim.fade_out, R.anim.fade_in);
    transaction.replace(R.id.container, mFragment);
    transaction.addToBackStack(null);
    transaction.commit();
}

1 个答案:

答案 0 :(得分:2)

我使用android.R.animator.fade_in代替R.anim.fade_in解决了这个问题。