[android-developers] Re: startForeground Backwards compatability

2009-11-15 Thread G
Ha! Yeah I just took a closer look, no idea why I thought that would be looking at my service :/ On Nov 15, 6:39 pm, TreKing wrote: > I don't know about that last section, I haven't used the ActivityManager, > but are you sure that the service your checking is actually YOUR service? I > would dou

Re: [android-developers] Re: startForeground Backwards compatability

2009-11-15 Thread TreKing
I don't know about that last section, I haven't used the ActivityManager, but are you sure that the service your checking is actually YOUR service? I would double check to make sure the service you're getting back is yours. This might have worked pre-2.0 simply by luck. ---

[android-developers] Re: startForeground Backwards compatability

2009-11-15 Thread G
THANK YOU! The word I was missing in my searches was Relection or Reflect. I've added this method to my Service, but I'm still having a problem... private void turnOnForeground(Notification notif) { try { Method m = Service.class.getMethod("startFor