Today learning Service, and then encountering a force close,log in the existence of this sentence:
05-23 14:13:26.408:e/androidruntime (17616): Android.content.ActivityNotFoundException:Unable to find explicit Activity class {Com.exr.service/com.exr.service.service1}; Declared this activity in your androidmanifest.xml?
It is not registered in Androidmanifest.xml, but I have already registered in Androidmanifest.xml. Then a variety of searches, and finally saw a solution to the answer to my question
My error code:
1Button.setonclicklistener (NewOnclicklistener () {2 3 @Override4 Public voidOnClick (View v) {5 //TODO Auto-generated method stubs6StartActivity (NewIntent (Getapplicationcontext (), Service1.class));7 8 }9});
The error is in line 6th, my is service, but I started the activity, so force close appears.
Here's the correct code:
1Button.setonclicklistener (NewOnclicklistener () {2 3 @Override4 Public voidOnClick (View v) {5 //TODO Auto-generated method stubs6StartService (NewIntent (Getapplicationcontext (), Service1.class)); 7 }8});
Then the operation is OK, no error.
Problems encountered with Android learning Service