Problems encountered with Android learning Service

Source: Internet
Author: User

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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.