Android:服务中的内容提供商访问
我正在创建一个应用程序,该应用程序应该启动一个服务,该服务应该访问android中的内容提供程序并将一些数据发送到外部服务器。
访问内容提供程序时,我需要使用 managementQuery
函数,该函数必须在 Activity
中调用。我应该如何解决这个问题?
我不知道是否要创建另一个 Activity
类以便在此处编写 Content Provider
访问方法。 我应该如何从 Service
本身将数据发送到服务器?
不确定我是否解释清楚了。
提前非常感谢!
I am creating an application that is supposed to start a service which should access to a content provider in android and send some data to an external server.
When accessing the content provider, I need to use the managedQuery
function, which has to be called in an Activity
. How should I address this issue?
I don't know whether to create another Activity
class in order to write the Content Provider
access method here.
How should I send the data to the server, from the Service
itself?
Not sure if I explained myself clearly..
Thanks a lot in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您需要
ContentResolver
类:I think you need the
ContentResolver
class: