- 삽질방지

[Android] calling startactivity() from outside of an activity context requires the flag_activity_new_task flag. is this really what you want?

junn__ 2023. 2. 12. 00:37
반응형
  • Intent로 다른 Activity를 실행하고자 할 때 발생하는 오류.
startActivity(intent.addFlags(FLAG_ACTIVITY_NEW_TASK));

상기 코드를 넣어주어 해결.

반응형