Java tutorial
//package com.java2s; import android.content.Context; import android.content.Intent; public class Main { public static boolean stopService(Context context, String className) { try { return stopService(context, Class.forName(className)); } catch (Exception e) { e.printStackTrace(); return false; } } public static boolean stopService(Context context, Class<?> cls) { Intent intent = new Intent(context, cls); return context.stopService(intent); } }