在我的代码中,在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();
}
答案 0 :(得分:2)
我使用android.R.animator.fade_in
代替R.anim.fade_in
解决了这个问题。