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