android.content.ActivityNotFoundException:

前端 未结 24 1855
一生所求
一生所求 2020-11-22 10:38

I am getting this exception while I am trying to call an activity from another one. The complete exception is

android.content.ActivityNotFoundExcept

24条回答
  •  既然无缘
    2020-11-22 11:12

    I was using getActivityContext() (instead of Activity.this) for the menu code to save some work, and copy-and-paste it to each activity without editing each time.

    I replaced them with Activity.this, and the issue is gone.

    I have a feeling a smarter Android guy could work-around not having to do that. Would like to hear what it would be.

提交回复
热议问题