IntentService is a special implementation of Android service component.
0
votes
0answers
11 views
My Content Provider to Rest with Broadcast is having Infinite loop
I watched the virgil's android rest google io video and trying to implement it.
In short this is the problem but please read on for details.
ContentResolver query -> Content Provider Query -> Start ...
0
votes
1answer
29 views
Android IntentService won't start on boot
I have an IntentService which starts on boot and stays running in the background. There is no launcher Activity, the IntentService is called by a broadcast receiver. It works on 2.3.4 and 4.0.4 ...
1
vote
0answers
38 views
NullPointerException at Intent call
package com.exercise.AndroidAlarmService;
import java.util.Calendar;
import android.app.Activity;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Context;
...
0
votes
1answer
27 views
IntentService is hanging UI in android
In IntentService i am using ThreadPoolExecutor poolSize 8 and maxPoolSize 10. When ever Service is started it will effect on UI. In runTask() method i am add tasks to thread pool.
private ...
0
votes
1answer
54 views
Android: IntentService getting Result back to ListFragment
I built a fully-functioning FragmentActivity based on this demo.
Originally (like other activities in my app) the data was being loaded into the FragmentActivity.ListFragment.ListView from SQLite in ...
0
votes
0answers
31 views
IntentService calls twice on one click
On button click on the ActivityD I start IntentService:
Intent intent = new Intent(this, DownloadService.class);
intent.putExtra("EVENT", Const.BC_EVENT_UPDATE);
startService(intent);
and request ...
0
votes
2answers
28 views
pass a String to a class which extends PhoneStateListener
i want to know if there is any way to pass a string from an activity to a class which extends phoneStatelistener.
in sending end, i used
Intent pass = new ...
0
votes
0answers
10 views
Multiple IntentService instances working with SQLite
I have an IntentService that does the following:
- (possibly) adds an entry to a SQLite database
- goes through the entries in the database to see if an action should be taken, and if so, ...
0
votes
0answers
39 views
How can I call findViewById inside IntentService?
Is there a way to call findViewById inside IntentService? In my case, I tried using a static reference of MainActivity class. But it didn't work.
MainActivity class calls IntentService:
public ...
0
votes
1answer
19 views
Android : Does IntentService works request by request or concurrently
I have my custom IntentService :
public class CustomService extends IntentService {
// some line of code here
}
And I call CustomService from BroadcastReceiver Because the length is not fix (base ...
-1
votes
0answers
13 views
How to make IntentService to behave like normal service in a particular scenario? [closed]
Can I change the behavior of an IntentService to normal Service for a purticular event or FLAG?
0
votes
1answer
19 views
Life of a member variable in IntentService
Please explain the life of a member variable in IntentService. Does it get deinitialized when the IntentService gets killed?
0
votes
1answer
32 views
Schedule AlarmManager event to happen a few days from now
I have been playing with the AlarmManagerin order to schedule an IntentServiceto do X task after a specific period of time. So far it works great, here' how I do it:
public static void ...
0
votes
2answers
87 views
IntentService Handling Requests from Multiple Activities
Up to this point my IntentService(s) has been working great because each IntentService has only been receiving requests from a single Activity (SQLite INSERTs) and responding to the same Activity.
...
0
votes
1answer
38 views
run application in the background IntentService
I've developed an application that runs in the background and I used an IntentService for beginning.
This is my code:
public class UsbService extends IntentService {
/**
* A constructor ...
1
vote
2answers
92 views
Android: SQLite: Loading Views with Data Queried by IntentService
I know that an Activity can create an intent and send it to an IntentService.
I know that the IntentService, having fulfilled a request, can send a Message back to the calling activity.
I know that ...
0
votes
4answers
36 views
How to get locationchaged using Intentservice?
I want to get Latitude and Longitude as and when location is changed.How it can be possible using Intentservice? other thing is that even application is in background I want current Latitude and ...
1
vote
1answer
61 views
How to communicate between background services
I am implementing an app, in that I have two Services. One does some task and pass some value to another service and that service does some task using this value. When the first Service generate first ...
0
votes
2answers
46 views
Performing a Scheduled task from a Service and Keeping that service Alive
public class MyHibernatedService extends Service{
public void onCreate() {
super.onCreate();
//declaring the intents ..
//some codes...
AlarmManager am = ...
0
votes
0answers
33 views
Android IntentService time limit
I'm writing an app that is required to poll a web page at a user configurable frequency. I have an AlarmManager set up with a broadcast pending intent. When the Alarm goes off, my broadcast receiver ...
0
votes
0answers
25 views
android usage of IntentService
There is a MainActivity in my toy project. In the onCreate method of MainActivity, I start an IntentService. The following is the code:
protected void onCreate(Bundle savedInstanceState) {
Intent ...
1
vote
2answers
109 views
|FINALLY SOLVED| How to force stop Intent Service in progress
I have a intent service which downloads several gigabytes of videos. I have a "Stop" button, to stop the download if accidentally hit "Start" or whatever. I know this has been asked a couple of times ...
2
votes
0answers
43 views
Pattern for notifying events to Activities and Services at the same time
I'd like to know the best pattern for the following scenario:
1) ActivityA contains a button which resets the app data when pressed
2) IntentServiceA, IntentServiceB and ActivityB want to be ...
0
votes
0answers
14 views
Can I run multiple instances of an intentservice?
My application has a variable number of identical controls created at runtime according to the user's settings. Each control (button) will start two timers, the end of which I can pick up with a ...
1
vote
1answer
100 views
Android Java Service and Timer/Thread Sleep
Basically, what I need to code is simple, but as I'm a beginner, I am still confused about Service, IntentService, creating a new Thread separate from the main Activity/UI thread, etc. I'll explain ...
0
votes
1answer
28 views
strategy for button that fires Http Request
I have a Like and Dislike Button that fire an IntentService to update the status of the resource on the Server if the user like or dislike that particular resource .
no to avoid sending too much ...
0
votes
0answers
121 views
IntentService, BroadcastReceiver, AsyncTask and notifyDataSetChanged
Need some help or advice's.
Problem overview with some code snippets.
I have main activity. Then application starts my onCreate method make some setups and onResume method fires all my data ...
0
votes
0answers
18 views
Intent Service for receive a multiple intents
I have an Intent receive for receive multiple intents and manage the connection through the Handler, but I have a problem. The first call from Broadcast Receiver go to the handler, but the second call ...
0
votes
3answers
64 views
setTextViewText not working in IntentService
The code here in onHandleIntent:
RemoteViews views = new RemoteViews(getPackageName(), R.layout.mylayout);
views.setTextViewText(R.id.txtView1, "some string");
...
Bundle bundle = intent.getExtras();
...
0
votes
0answers
35 views
Resuming IntentService
Is there any way how to restart my IntentService? I´ve found out, that when my application is minimized, everything´s ok, but when the system is overloaded (f.ex. there is incoming call and at the ...
0
votes
0answers
51 views
BroadcastReceiver/IntentService for an LVL paid app
I'm trying to manage a free/paid app by having the paid version be a simple licensing server.
The paid app has a receiver:
public class LicenseRequest extends BroadcastReceiver
{
private ...
0
votes
1answer
58 views
Bound IntentService and ProgressBar without percentage
onBind(Intent intent) exists in IntentService class and documented, I have tried writing code according to the Bound Services pattern but onHandleIntent containing expensive operations was not called. ...
-1
votes
1answer
16 views
intentService thread not getting stopped permanently
Even after googling for long, I couldn't find the solution to my problem.
Problem is:
In my application, I launch an intent which call the file implementing intentService on click of toggle button ...
0
votes
1answer
32 views
Enable and disable Alarms for WakefulIntentService
I am using WakefulIntentService by @Commonsware.
In my implementation I want to be have an activity to enable/disable the Alarms. So my 2 questions are:
How can I manually enable/disable the ...
0
votes
0answers
211 views
Fatal Signal 11 (SIGSEGV) from IntentService - how to debug?
I'm developing Android application using IntentServices to access API and save response to local database (by GreenDao ORM). I have some problems with errors which I don't know how to debug.
I guess ...
0
votes
2answers
56 views
onHandleIntent() - Wallpaper change not working correctly
I am using the IntentService to change wallpaper in the background. Using the code below inside the main Activity class the wallpaper changes to an image correctly, but when the code is added to the ...
1
vote
1answer
169 views
android java - IntentService - onHandleIntent does not get called
after many hours of researching I am finally consulting official help. Why won't onHandleIntent get called? Is there something wrong here?
main activity onCreate():
mService = new Intent(context, ...
0
votes
2answers
82 views
NetworkOnMainThreadException in IntentService
I am making network calls from an IntentService but still receiving a NetworkOnMainThreadException. My understanding is that an IntentService always runs on a worker thread, so I'm suprised to see ...
0
votes
1answer
74 views
Communication between broadcast receiver and service
I just want to know what should I look for to manage with my problem.
I want to make an application which download some data from the internet and save it to file. During downloading application ...
0
votes
0answers
71 views
Android - IntentService not starting
I have tried all the suggestions in other topics here and elsewhere for an IntentService that isn't starting and none of them work (or aren't relevant to what I'm doing). Here's my service:
package ...
0
votes
1answer
77 views
Android - Start an IntentService on a specific day/time each week
I'm working on an app that has an IntentService that shows a Notification with showtimes for a local venue. I want the IntentService to be called every Fri at 5am or at boot on Friday morning.
What ...
0
votes
1answer
83 views
IntentService starting my app
I have an IntentService that runs every 5 minutes. The problem i'm having is when the user is out of the app, the service starts the app up. How can i specify to the service that the app should not be ...
0
votes
1answer
117 views
How to stop one IntentService while there are many IntentService are running
I have a listview contains many songs. Each time a song is clicked, I call an IntentService to download this song by sequence.
But sometimes I want cancel a download (for example: the 5th). It means ...
-1
votes
4answers
288 views
Service vs intent service
If someone can show me an example of something that you can be done with an intentService and can not be done with a Service and the other way around.
I also know that, IntentService run in a ...
0
votes
2answers
75 views
Update ListView from IntentService
I have an IntentService which creates an Overlay with the help of a WindowManager. In the WindowManager I add a View which contains a ListView. Now I want to add a new Item to the ListView in the ...
0
votes
2answers
65 views
Prevent Service to restart
I have an IntentService which is started from a BroadcastReceiver with startService(service). When I get new informations in the BroadcastReceiver the new infos are pushed through an intent with ...
1
vote
1answer
58 views
Interrupting an IntentService
Im creating an app, where I need to process data that can be huge and could take some time.
Now I read a lot of stuff on IntentService and I actually already implemented it as a communication class ...
0
votes
1answer
144 views
How to send messages from activity to service and execute them while the service is running?
I have an activity which starts an IntentService:
intent = new Intent(MyApplication.getAppContext(), MyService.class);
intent.putExtra("EXTRA_DEVICE_ADDRESS", value);
...
0
votes
1answer
56 views
Reconnecting Messenger from Intent Service when activity restarted
I am working on a applicatin that syncs with videos on server. It starts a IntentService that downloads playlist, inserts it into database and than downloads actual video files to sd-card.
I am using ...
0
votes
2answers
53 views
Stop Activity from IntentService
I want to create a simple login in my application. From the SignInActivity, where user types his credentials, I start IntentService, which sends data to the server and obtains information about ...





