Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8426603
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T04:34:28+00:00 2026-06-10T04:34:28+00:00

I am starting an IntentService several times with a unique id value. When I

  • 0

I am starting an IntentService several times with a unique id value. When I recreate the intent and use it to call stopService on the current IntentService, the entire IntentService queue is cancelled on top of stopping the current IntentService. Also, calling stopService on an IntentService that is in the queue, has no effect.

Start Service:

Intent intent = new Intent(context, IntentService.class);
intent.putExtra("action", "scan");
intent.putExtra("id", id);
context.startService(intent);

Stop Service

Intent intent = new Intent(context, IntentService.class);
intent.putExtra("action", "scan");
intent.putExtra("id", id);
context.stopService(intent);

I would like the IntentService with the associated id to be stopped / removed from queue, then have the rest of the queue run its course.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T04:34:29+00:00Added an answer on June 10, 2026 at 4:34 am

    I think you may have to implement your own type of intent service here. Looking at the code

    Although looking at the stopSelf(int) method, you might be able to do this manually if you know what each intent is created with.

    mActivityManager.stopServiceToken(
                    new ComponentName(this, mClassName), mToken, startId);
    

    So something like:

    mActivityManager.stopServiceToken(
                    new ComponentName(this, IntentService.class.getSimpleName()), null, mStartId);
    

    I haven’t tried this but might be a nudge in the right direction. Although I think that it might not do anything as it will only stop running services.

    Otherwise you will have to make your own IntentService where you can fire remove intents at it.. might be worth nudging @commonsguy

    Cheers,
    Chris

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In terms of life cycle, when I call stopService(intent), does the service's onDestroy() get
Starting to learn Canvas and have two classes so far (main one to call
My Intent Service is not starting. It is giving an error. I'm new to
Possible Duplicate: Android RuntimeException: Unable to instantiate the service Problem: starting an IntentService generates
Starting a new project and would like to use one of the MVC framworks.
Starting from here: CGBitmapInfo sampleCGImageBitmapInfo = CGImageGetBitmapInfo(sampleCGImage); How do I use the constants in
Starting with API level 9, there's android:filterTouchesWhenObscured attribute and corresponding setFilterTouchesWhenObscured method on ViewGroup
Starting with a recent new version of ADT, I've noticed this new attribute on
Starting with an empty dataframe, I need to fill the dataframe as follows: A
Starting at http://developer.android.com/training/index.html I selected the [ FIRST CLASS > ] button which takes

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.