I am using startActivity to call another Activity and I get the \"Activity Not Found Exception\". Here is my code:
TextView textView = (TextView) itemClic
I know this is an old post, but it's on top of the google search at the moment, so for anyone who would come here later: ActivityNotFound can be caused by unhandled exceptions in your onCreate in the activity you're trying to create. It took me a while to notice that I was causing a nullPointerException there, because I wasn't looking for it.