[android-developers] Re: I want run my application in background, with "Service component"

2009-04-06 Thread Todd Sjolander
The original code I used came from the SDK sample code. Specifically, look in ...\samples\ApiDemos\src\com\example\android\apis\app. There are a lot of different capabilities demonstrated there, and the ones you want are in RemoteService.java, RemoteServiceBinding.java, & RemoteServiceController

[android-developers] Re: I want run my application in background, with "Service component"

2009-04-04 Thread jj
Thank you for reply can you just send me the tutorial link, what u mentioned in first paragraph Or any other related tut link. Thank you --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To p

[android-developers] Re: I want run my application in background, with "Service component"

2009-04-03 Thread Todd Sjolander
Using a Notification is one way to go about it. The Notification can be linked to an Activity, which gets launched if the user clicks on the Notification. Here's some code, which I think I pulled from some tutorial someplace: CharSequence text = getText(R.string.remote_service_started);