Hope it would for you too.
Error Msg :
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.example.reader/com.example.reader.Listview}; have you declared this activity in your AndroidManifest.xml?
[Step 2] Add an activity, named with the activity you missed at the position (2) shown above.
<activity
android:name="your_missing_activity" >
</activity>
for my case is :
<activity
android:name="com.example.reader.Listview" >
</activity>
No comments :
Post a Comment