gpt4 book ai didi

java - 如何切换 ConnectivityManager.getBackgroundDataSetting() 返回的选项?

转载 作者:行者123 更新时间:2023-12-01 05:59:21 26 4
gpt4 key购买 nike

有人看过 jsharkey 的 battery life google io presentation

如何切换模拟器中 ConnectivityManager.getBackgroundDataSetting() 返回的选项?

最佳答案

简短的回答是你不能。

更长的答案是你不应该。它是 secure settings 之一,因此不应直接操纵。

上面链接中的文档指出:

Secure system settings, containing system preferences that applications can read but are not allowed to write. These are for preferences that the user must explicitly modify through the system UI or specialized APIs for those values, not modified directly by applications.

最简单的方法是使用 SYNC_SETTINGS 操作将用户指向正确的设置 Activity :

 Intent intent = new Intent("android.settings.SYNC_SETTINGS");
intent.addCategory("android.intent.category.DEFAULT");
startActivity(intent);

这很可能会破坏应用程序的流程,但会确保用户了解设置的更改。

关于java - 如何切换 ConnectivityManager.getBackgroundDataSetting() 返回的选项?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1587886/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com