A Service is an application component representing either an application's desire to perform a longer-running operation while not interacting with the user or to supply functionality for other applications to use. Each service class must have a corresponding declaration in its package's ...
19
votes
4answers
704 views
How to transfer files between Android applications running on the same device?
I am writing an Android application that interfaces with a RESTful service. This web service essentially fronts a file system, and provides metadata as well CRUD access to the files. My application ...
10
votes
6answers
564 views
Run a service with Root privileges or adding permissions with root
I am currently developing an app that reads out SMS/Emails while driving. Many users wished support for WhatsApp / KakaoTalk.
However, as there is no "official" way to receive their messages, there ...
10
votes
1answer
2k views
Android Architecture Design - How to do it right?
how does a good architecture for an android app look like? Should all the "work/business logic" been done in a background service and the Activity communicates just with the service to query/fetch ...
10
votes
1answer
1k views
Android: When to use Service vs Singleton?
I'm quite new to Android development.
When is it a good idea to create an Android Service instead of just using a simple Singleton class?
Take, for example, the data layer downloading information ...
7
votes
4answers
354 views
How it is possible Service run indefinitely and also allow binding in android?
I want a service which can run in the background until I stop, even if the component that started it is destroyed and also allows binding to the activities. How it is possible ?
As per android ...
6
votes
1answer
127 views
Why another service on top of IMarketBillingService?
Google's market_billing sample, just like others as this one, connects to the remote service IMarketBillingService through a local service wrapper, BillingService.
I understand that services have the ...
5
votes
1answer
142 views
Google IO Rest design pattern, Finished ContentProvider and stuck now
So after watching the very know video on this topic i decided to go with design pattern B. Using a contentprovider with servicehelper.
Basicly i have the following files:
MyProvider
MyDatabase
...
5
votes
1answer
91 views
Need Help in services running in background
I need to create a background service like when user is trying to open any of the installed application, let him know that application's information (eg: Package-name) before that application begins ...
5
votes
5answers
2k views
SpeechRecognizer causes ANR… I need help with Android speech API
EDIT: I should have mentioned this already, but I'm running this code in a service. The entire app is turned on/off by a widget button and has no activity.
Update: I tried attaching the SDK sources ...
4
votes
3answers
162 views
Android: IntentService not queuing properly
I am attempting to use an Intent Service to run in the background to send email with fairly large (1-2mb) image attachments. I am a beginner, and have learned everything so far by researching on the ...
4
votes
2answers
139 views
How to Run a Service on Boot in Android 2.3 (Gingerbread) without crashing
I followed several instructions in how to run a service on boot.
In Android 2.2 everything works OK.
I noticed that in Android 2.3 the process crashes and ActivityManager schedules the service to ...
4
votes
1answer
36 views
Stopping an Android Service from within a thread
I have a Service which starts a thread during onCreate. The thread is monitoring hardware (IOIO) and will end once it is disconnected so essesentially is an infinite loop. Stopping the service from an ...
4
votes
2answers
151 views
Name of Activity or Receiver that calls the Service
I have a Intent service which is called from either a receiver or an activity. I would like to know the name of the receiver or activity that triggers the service. I don't want to use any extras or ...
4
votes
2answers
200 views
What are some ways to optimize a service running on Android?
I'm wondering what you can do programmatically to minimize the footprint that your service will have on a device? Are there any particular tricks to the way that you write a service so that it ...
4
votes
1answer
105 views
Service on android?
I've created an application which does synchronization with the server.
I've already have a code, which does synchronization once user pressed a button. Now it is time to add Service there.
I have the ...
4
votes
1answer
226 views
Can started and bound services live “forever”?
I understand that a service can run in two modes, started and bound.
What I don't quiite understand from the developer docs or other questions on this site, is whether a service running as both ...
4
votes
1answer
165 views
Should I do work in a separate thread if my android app has no UI?
My application is essentially a service that is started on boot (by a boot-completed receiver), and should periodically gather data, send it over the network, and go to sleep (probably using ...
4
votes
2answers
2k views
Good sample application for android service
Is there a good sample application for creating android services that run in the background?
3
votes
1answer
29 views
Bind to a Service if exists
I'm working on a project that needs an activity to connect to a local service if that service is running and start it if it is not running.
What is the suitable flag for such approach.
3
votes
2answers
165 views
Best Practice to report user location continuously
I'm designing an application where application in server side need to be continuously aware of user location. I'm thinking to create an Android service that run in the background and continuously ...
3
votes
4answers
128 views
How can I get the application context from an Android Service?
I have an Android service that is running and listening for microphone input. I want it to launch an activity when a certain criteria is met. In order to create an Intent I need the application ...
3
votes
2answers
162 views
App partially closing
I'm building an application using a service and the fragment compatibility pack and am running into some weird behavior. I have a FragmentActivity and a ListFragment which implements LoaderCallbacks, ...
3
votes
3answers
514 views
How to consume SOAP/REST web services on Android (Service/Broadcast/Intent/etc)
Is there a common way to consume web services from Android applications (aside from the protocol)? What I need is a Service or Intent or Thread (or anything else) that is capable of:
staying alive ...
3
votes
1answer
183 views
How to check whether TtsService (or an Android service) is stopped?
For reasons beyond my app's control, TtsService is stopped by the system, providing only Log.i() hints in LogCat:
05-01 12:01:55.662: INFO/TtsService(1791): Stopping
05-01 12:01:55.662: ...
3
votes
1answer
183 views
Can't pass type Object[] as param for method in Android AIDL
Here is the code:
package android.os;
import android.content.Intent;
interface IInterpreterService {
int notifyChange(String rule_name, Object[] data);
void getMonitor(in Intent intent);
}
...
3
votes
1answer
2k views
Suppress notifications from a service if activity is running
I have an Activity and Service that work together in my application. I've configured the service as a remote service (implemented AIDL) so it will keep running even when the Activity isn't visible.
...
3
votes
1answer
1k views
Obtain Android GPS location once every few minutes
I would like to write an app on Android to upload my GPS location to an external website once every ~5 minutes. This needs to have as minimal an impact on battery life as possible, but it also needs ...
2
votes
1answer
16 views
Remove ongoing notification from service
I have a service that create a notification when it is started.
And then ondestroy() i want it to be removed.
I just use .cancel(NOTIFICATION_ID);
It works great when it is a normal notification ...
2
votes
4answers
64 views
Running a service in separate thread and waking it every 10 minutes?
My app will access a webservice to access data (even if the application is not in foreground), every 10 minutes. What is the best way to do that?
First do I need to start my service in seaparate ...
2
votes
1answer
34 views
Variables in my Service/IntentService are reset on every start
I declared a service, that shall act as a queue. Therefore I have a variable that tells the service it's the first start and another one that stores a value.
The code looks like this:
public class ...
2
votes
1answer
78 views
Creating an unstoppable service in android
I want to create a unstoppable service, i.e if the user clicks the Force Stop from settings->Manage Applications->APP_NAME, I want to know that any method for killing that service like onDestroy() is ...
2
votes
2answers
56 views
is there a way to handle key events in a widget/service?
I would like to handle the volume up and volume down keyEvents in my App Widget.
It really should happen in the app widget or a Service, not in an Activity (the homescreen should be displayed).
But ...
2
votes
1answer
71 views
Android in-app billing: Is it really necessary to create a local service?
The official documentation says that "Your application must have a local Service to facilitate messaging between your application and Android Market."
My question is, is this is really necessary? And ...
2
votes
0answers
60 views
Alarm manager stops unexpectedly
I have created a clock widget with some nice backgrounds. I use Alarm Manager to update time and background every 1 minute. But it stops working after few hours, means I can run that widget, I also ...
2
votes
1answer
119 views
Launch android app with emergency dialer
I'm developing an app and i want to launch it from the emergency dialer (the one you can access without unlocking the phone). When I call "##123##" it says that is not an emergency number so it can't ...
2
votes
1answer
101 views
Android singleton between service and actions
I am working on a project that. It will connect to a remote host using tcp sockets from a service. And interact with it for getting and sending data.
The flow, I have planned is;
a singleton socket ...
2
votes
0answers
41 views
gps approximate alters on bunch of locations stored in sqlite database
im new in android im stuck at a point, i have stored locations in sqlite database and retrieve using a cursor.i want to use these locations for proximity alert/notification.eg
i have stored a shopping ...
2
votes
2answers
102 views
Android - How is it possible, that a service keeps running after the Activity has been shut down?
I am a bit confused about how services funtion, notably these two things:
From http://developer.android.com/guide/topics/fundamentals/services.html :
A service is "started" when an application ...
2
votes
1answer
157 views
Can I call stopSelf() in Service.onStartCommand?
There are some conditions where my service could be attempted to be started when it should not be. In cases like this is it bad form to call stopSelf() while inside a onStartCommand() method? If so ...
2
votes
1answer
110 views
Service stops running after a while on the real device ( > 40 minutes ) works on emulator
Friends,
I created an android background service that is called every 2 minutes. When its called it starts listening for locationUpdates for GPS and NETWORK for 40 seconds. Extracting useful ...
2
votes
1answer
264 views
Android: startActivityForResult not calling onActivityResult
My Setup:
A Service running in its own process, CentralService
An activity that calls startActivityForResult(), MainActivity
The activity that is being started for result, ReturnResultActivity
...
2
votes
1answer
112 views
Make sure that my code is thread safe
I am doing an Android service that gives content to other apps that can register as callback.
I am not 100% sure about how the Android Handler class works, so can someone confirm me that this code is ...
2
votes
1answer
132 views
Will we leak the android service connection if the client's process is killed by android?
Condition:
I have a client activity "X" of a remote service (with AIDL) that calls the bindService() in the onCreate() and unbindService() in the onDestroy(). Assume that this activity has been ...
2
votes
0answers
116 views
Is it possible to mock android services under unit tests?
I'm trying to write unit tests for my android application and I want to mock my service class. I want to test some error behaviors in the service, such as connection errors or file not found.
To ...
2
votes
1answer
361 views
Is an android service guaranteed to call onDestroy()?
The life cycle diagram of an Activity on an android does not guarantee that onDestroy() would be called, but that the process may be killed and the Activity is removed abruptly. The life cycle diagram ...
2
votes
4answers
86 views
help required with BroadcastReceiver
Basically, my problem is that i need to send data from my service (started with Intent) to my main activity. (this is my first attempt at using a BroadcastReceiver)
I have two apps, com.example.myapp ...
2
votes
3answers
149 views
Android Service Activity Intent
I want to pass a string from activiy to service.
Bundle mBundle = new Bundle();
mBundle.putString("MyString", string);
mIntent.putExtras(mBundle);
...
2
votes
3answers
154 views
Need two-way communication with a background process and Activity in Android - Suggestions?
Problem
Throughout my app I need to download files. In some cases I only need one-way communication, basically communicating with the Activity that a download has finished. In other cases, I need to ...
2
votes
4answers
132 views
What happens to a service started by BOOT_COMPLETE after system kills it?
What happens to a service started by BOOT_COMPLETE after system kills it for memory?
Will it ever be restarted without rebooting the phone? Is it possible to restart it somehow?
What is the best ...
2
votes
2answers
377 views
Android: Best way to fetch data from server (Widget + application)
I'm developing an Android application where I need to fetch data (news items) from a server. I know how to do this, using threads and/or AsyncTasks, etc, but since I need the data in a widget also, ...