Java tutorial
//package com.java2s; import android.app.ActivityManager; import android.content.Context; public class Main { public static ActivityManager getActivityManager(Context context) { if (context == null) { throw new NullPointerException("context can not be empty"); } return (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE); } }