List of usage examples for android.app Service stopForeground
public final void stopForeground(@StopForegroundFlags int flags)
From source file:Main.java
public static void stopForeground(Service service) { service.stopForeground(true); }
From source file:Main.java
public static void stopServiceAlive(Service service) { service.stopForeground(true); }
From source file:com.reallynourl.nourl.fmpfoldermusicplayer.ui.notifications.MediaNotification.java
public static void remove(Service service) { service.stopForeground(true); NotificationManagerCompat.from(service).cancel(NOTIFICATION_ID); }
From source file:com.schoentoon.connectbot.service.ConnectionNotifier.java
public void hideRunningNotification(Service context) { context.stopForeground(true); }