更新 Androidprovider.Settings.System 值
我发现我无法写入 LG-P500 (Android 2.2) 中的设置。 这是我的代码:
android.provider.Settings.System.putInt(getContentResolver(), android.provider.Settings.System.AUTO_TIME, 1);
指定用户是否喜欢从网络 (NITZ) 自动获取日期、时间和时区的值。 1=是,0=否
它在我的模拟器 android 2.2 中工作正常 我也尝试过其他手机,HTC android 2.1,它也工作得很好。
有谁知道会出现什么问题吗? 非常感谢。
it seen i can't write to settings in LG-P500 (Android 2.2).
This is my code:
android.provider.Settings.System.putInt(getContentResolver(), android.provider.Settings.System.AUTO_TIME, 1);
Value to specify if the user prefers the date, time and time zone to be automatically fetched from the network (NITZ). 1=yes, 0=no
It work fine in my emulator android 2.2
I also try in other phone, HTC android 2.1 it works fine too.
Could anyone know what would be the problem?
Thank you very much.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将其添加
到
AndroidManifest.xml
文件中。这应该可以解决问题;-)
You should add
to your
AndroidManifest.xml
files.This should do the trick ;-)