GetSystemService DOWNLOAD_SERVICE 处于非活动状态
在非活动类中的简单方法中,我使用代码:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
相反,你可以只写
That会编译。
DOWNLOAD_SERVICE
是 Context 类的常量。Instead you could just write
That would compile.
DOWNLOAD_SERVICE
is a constant of Context class.你可以使用
you can use