Every 30 seconds my broadcast receiver starts a service thread like this:

Thread t = new Thread(){
            @Override
            public void run(){
                Intent intent = new Intent(context, AlarmService.class);
                context.startService(intent);
            }
        };
t.start();

Is this thread killed after 10 secs along with the broadcast receiver or do 
I need to kill it manually?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to