Search code examples
androidandroid-activity

GetSystemService DOWNLOAD_SERVICE in non activity


In my simple method in non activity class, I am using code:

mgr=(DownloadManager)mContext.getSystemService(DOWNLOAD_SERVICE); 

in non activity class, my constructor looks like:

public Download23(Context context){
    this.mContext=context;
}

But compilator won't accept DOWNLOAD_SERVICE string. Do you know how to solve that?


Solution

  • you can use

    (DownloadManager)mContext.getSystemService(Context.DOWNLOAD_SERVICE);