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

  • Home
  • SEARCH
  • 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 8722341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T07:23:33+00:00 2026-06-13T07:23:33+00:00

host.activity is my package and host.framework.ServicePromemoria is an android service. What does this error

  • 0

error service

host.activity is my package and host.framework.ServicePromemoria is an android service.

What does this error mean?

  • 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-13T07:23:34+00:00Added an answer on June 13, 2026 at 7:23 am

    This means that your service is doing a rather long operation (most ANRs are from operations greater than 5 seconds) and is doing it on the UI thread. This could be a network task, or a database task, or some other long operation.

    You can fix this by running the task in a service off the main UI thread, by using a Thread or an AsyncTask.

    Infact, you can directly start your service into a new thread as follows:

    Thread t = new Thread(){
    public void run(){
    getApplicationContext().bindService(
            new Intent(getApplicationContext(), YourService.class),
            serviceConnection,
            Context.BIND_AUTO_CREATE
        );
    }
    };
    t.start();
    

    Also, cache the value returned by bindservice, if any, if you require it for later use.

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

Sidebar

Related Questions

I am getting this Error while executing my android application : Host is unresolved:
I am passing a parameter to a new activity using tab host in android
I host my WCF Service with windows service hosting... now when I call my
For example, i have 3 activities.. I also use Tab host with separate activity
I'd like to host a WCF web service in IIS. The service should keep
I've made a simple Android Activity with an ActionBar to switch between 2 fragments.
I have two packages say com.android.package1 and com.android.package2 An activity in package1 (say A)
host.addTab(host.newTabSpec(Offers) .setIndicator(Offers, getResources().getDrawable(R.drawable.icon_light)) .setContent(new Intent(this, List_Items.class))); List_Items.class public class List_Items extends Activity{ public void
I am trying to create a custom activity for WF4 that host a child
I want to launch an Android activity from my app when the user selects

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.