Reputation: 143
I added an icon to menu. But after clicking the choice with the icon the exception pops up.
04-20 20:17:20.623: ERROR/AndroidRuntime(309): android.content.ActivityNotFoundException: Unable to find explicit activity class {jusbrz.bakalauras/jusbrz.bakalauras.AllCourseUsers}; have you declared this activity in your AndroidManifest.xml?
Activity was declared already. Was I suposed to add something to manifest after added icon?
Upvotes: 0
Views: 143
Reputation: 4340
activity needs to be declared in the manifest as
<activity android:name=".AllCourseUsers" />
Upvotes: 3