Android `settings.db` 参考?
有关于settings.db
数据库文件的参考吗? 我看到的大部分都是明显的变量,但缺乏足够的信心。
Is there any reference about settings.db
database file?
I see mostly obviously variables but there is not enough for confidence.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 root 设备上,您可以从
/data/data/com.android.providers.settings/databases/settings.db
中提取文件(您需要执行adb root
之前)然后你可以使用 sqlite 数据库资源管理器打开它:
这些名称是不言自明的。如果有人让您感到困惑,简单的谷歌搜索应该会有所帮助。
On a rooted device, you can pull the file from
/data/data/com.android.providers.settings/databases/settings.db
(you will need to doadb root
before)Then you can open it a with a sqlite database explorer:
The names are self-explanatory. If one confuses you, a simple google search should help.
几乎没有任何参考意义。您应该使用 Settings.System 类来访问 Android 中的系统设置。使用Settings.System 类,您可以读取和写入系统设置。
检查移动网络:
There is hardly any reference. You should be using the Settings.System class to be access the system settings in Android. Using the Settings.System class, you are able to both read and write to the system settings.
Checking Mobile Network: