The error I receive is, "android.content.ActivityNotFoundException:
Unable to find explicit activity class {com.droidea.birthday/
EditBirthdayActivity}; have you declared this activity in your
AndroidManifest.xml?"
The error seems simple enough, but I don't see a problem with the way
I have identified this activity in my manifest file. I have also been
unable to see any problems with the activity class itself.
Code:
AndroidManifiest.xml:
<activity
android:name="com.droidea.birthday.EditBirthdayActivity"
android:windowSoftInputMode="stateVisible|
adjustResize">
</activity>
Activity call:
Intent intent = new Intent(Intent.ACTION_INSERT,
People.CONTENT_URI);
intent.setClassName("com.droidea.birthday",
"EditBirthdayActivity");
startActivity(intent);
The EditBirthdayActivity is public, and I can see the activity from
"Dev Tools -> Package Browser" using the emulator.
I have spent several hours trying different configurations, but I'm
spinning my wheels at this point.
Has anyone experienced this?
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en