android.content.ActivityNotFoundException:

Maybe you need to check that you added the new activity to the manifest.xml file

Example:

<activity
      android:name=".className" 
      android:label="@string/app_name" > 
</activity>

Leave a Comment