1

我正在尝试使用overridePendingTransition从服务开始一个意图,它看起来像这样

    Intent dialogIntent = new Intent(this, PopUpMainActivity.class);
    dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    this.startActivity(dialogIntent);
    overridePendingTransition(R.anim.enter_anim, R.anim.exit_anim);

但它显示错误。

The method overridePendingTransition(int, int) is undefined for the type MyServiceForPopUp
4

1 回答 1

1

不幸的是,您只能overridePendingTransition从活动中调用。

更多信息在这里: https ://groups.google.com/d/msg/android-porting/M42HBc90hz4/HXz7aY1KqlYJ

于 2013-06-24T21:39:56.733 回答