View Single Post
Old July 23rd, 2010, 01:06 PM   #11 (permalink)
andywhoa
Member
 
Join Date: May 2010
Location: West Des Moines, IA
Posts: 105
 
Device(s):
Thanks: 9
Thanked 12 Times in 11 Posts
Default

Oh oh, I think I see your problem

You are missing a "." in your manifest before "MenuActivity"
Code:
<activity android:name="MenuActivity" android:label="Menu"></activity>
to
Code:
<activity android:name=".MenuActivity" android:label="Menu"></activity>
This is needed because the name gets added to the package name. Currently yours would compile android.bankclosuresMenuActivity instead of android.bankclosures.MenuActivity.


Try doing what I've told you in my last two posts and see if that helps
andywhoa is offline  
Reply With Quote