TIMEX
TIMEX

Reputation: 271724

I want my app to run things in the background, even when the user is donig other things on his Android

What should I look at to get started?

Is it Timer? http://developer.android.com/reference/java/util/Timer.html

Or am I missing something else?

Upvotes: 2

Views: 120

Answers (1)

pgsandstrom
pgsandstrom

Reputation: 14399

You should use a Service:

http://developer.android.com/reference/android/app/Service.html

Upvotes: 4

Related Questions