From 05d297331aeb095508f70757917b158eac02ab3c Mon Sep 17 00:00:00 2001 From: Dianne Hackborn Date: Tue, 14 Dec 2010 21:56:15 -0800 Subject: [PATCH] Quickly hack out setForeground call that is going away. I'll come back in a bit and make this API demo work again. Change-Id: I287dd64925e48bc934c44fb6d0b779a58a270503 --- .../src/com/example/android/apis/app/ForegroundService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/ApiDemos/src/com/example/android/apis/app/ForegroundService.java b/samples/ApiDemos/src/com/example/android/apis/app/ForegroundService.java index 7e061ed39..f1513ac68 100644 --- a/samples/ApiDemos/src/com/example/android/apis/app/ForegroundService.java +++ b/samples/ApiDemos/src/com/example/android/apis/app/ForegroundService.java @@ -82,7 +82,7 @@ public class ForegroundService extends Service { } // Fall back on the old API. - setForeground(true); + //setForeground(true); mNM.notify(id, notification); } @@ -109,7 +109,7 @@ public class ForegroundService extends Service { // Fall back on the old API. Note to cancel BEFORE changing the // foreground state, since we could be killed at that point. mNM.cancel(id); - setForeground(false); + //setForeground(false); } @Override