系统壁纸应通过服务更改
我的应用程序需要一项在特定时间间隔内更改系统壁纸的服务,我应该如何实现这一点,请帮忙???
my application requires a service that changes the system wallpaper in a particular time interval how should I implement this, please help???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建您的服务类
}
然后在您想要的地方调用您的服务意图
Create your service class
}
And then call your service Intent where your want
嗯,这个功能我已经实现了。我在系统中注册一个警报并将其连接到广播接收器。当BroadcastReceiver被触发时,在OnReceive()方法中,可以为系统设置壁纸。
Well, I have implemented this function. I register an Alarm in the system and connect it to a BroadcastReceiver. When the BroadcastReceiver is triggered, in the OnReceive() method, you can set a wallpaper for the system.