Java tutorial
//package com.java2s; import android.app.Service; public class Main { public static void stopForeground(Service service) { service.stopForeground(true); } }