GetSystemService DOWNLOAD_SERVICE 处于非活动状态

发布于 2024-12-05 01:01:26 字数 285 浏览 0 评论 0原文

在非活动类中的简单方法中,我使用代码:

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

在非活动类中,我的构造函数如下所示:

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

但编译器不会接受 DOWNLOAD_SERVICE 字符串。你知道如何解决吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彩虹直至黑白 2024-12-12 01:01:26

相反,你可以只写

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

That会编译。

DOWNLOAD_SERVICE 是 Context 类的常量。

Instead you could just write

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

That would compile.

DOWNLOAD_SERVICE is a constant of Context class.

乱了心跳 2024-12-12 01:01:26

你可以使用

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

you can use

(DownloadManager)mContext.getSystemService(Context.DOWNLOAD_SERVICE); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文