Android application error on starting new activity -
i'm having problem in android 1.6 app. have 2 java class files,each corresponding xml layout file.
when perform following:
intent ii = new intent(this, patiententry.class); startactivity(ii);
i application error:
sorry! application xxxx has stopped unexpectedly. please try again.
i have added following androidmanifest.xml file:
why getting these errors , how fix it?
thanks mike
make sure add patiententry activity manifest file.
<activity android:name=".patiententry"></activity>
Comments
Post a Comment