Android - Activity Not Found Exception

前端 未结 13 1821
春和景丽
春和景丽 2020-11-30 10:05

I am using startActivity to call another Activity and I get the \"Activity Not Found Exception\". Here is my code:

  TextView textView = (TextView) itemClic         


        
13条回答
  •  日久生厌
    2020-11-30 10:29

    I was trying to start SERVICE with startActivity(intent) and the same exception popped out. To run SERVICE, use startService(intent)

提交回复
热议问题