Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我要求在 android 中始终将移动数据“打开”。如何通过代码实现?我需要注册一些广播接收器或类似的东西吗?
您无法控制何时开启移动数据。您只能注册一个接收器,以便在它更改时被告知。
是的,您需要 CONNECTIVITY_CHANGE 接收器的寄存器,
您可以使用我的连接更改助手来执行此操作,
https://github.com/talhakosen/ConnectionListener
当用户选择始终打开时,也许解决方案可以是:如果尚未连接,则连接,如果已连接,则注册接收器以侦听状态变化,在断开状态接收时,再次连接..请建议这种方法是否正确?