安卓数据备份

发布于 2024-11-15 19:16:37 字数 323 浏览 0 评论 0原文

我在这里阅读了有关 Android 中应用程序数据备份的指南 http://developer。 android.com/guide/topics/data/backup.html,但我无法理解一件事 - 云如何识别用户询问他的信息。该过程对用户来说是透明的,因此他们不需要输入任何识别标志。例如:用户使用应用程序,保存一些字符串信息,然后更换移动设备,再次下载相同的应用程序,安装它,他如何获取相同的信息?也许我在 Android 指南中遗漏了一些东西?

I've read the guide about application data backup in Android here http://developer.android.com/guide/topics/data/backup.html, but I couldn't understand one thing - how cloud identify what user asks his information. The process is transparent for users, so they don't input any flags for recognitions. For example: user uses application, saves some strings information and then changes mobile device, downloads same application again, installs it and how he gets same information? Maybe there's something I've missed in that android guide?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

临风闻羌笛 2024-11-22 19:16:37

备份框架独立于实际的备份服务提供商,可以使用其他备份服务提供商,但默认的是 Google Android 备份服务(在您引用的文档中,基础知识 包含指向 这个页),它将把用户的数据备份到他们的 Google 帐户。

The backup framework is independent of the actual backup service provider, and can use other backup service providers, but the default one is the Google Android Backup service (In the doc that you reference, The Basics contains a link to this page) which will back up the users' data to their Google accounts.

沒落の蓅哖 2024-11-22 19:16:37

在 Android 中,用户很可能通过他的 Google 帐户来识别(Android Market 知道您的身份,这就是为什么当您擦除手机或购买新手机时会安装相同的应用程序)。

In Android, user is most likely identified by his Google Account (Android Market knows your identity, that's why same apps get installed when you wipe your phone or get a new one).

故人的歌 2024-11-22 19:16:37

前南斯拉夫 -
在 SDK 版本 23 及更高版本上,您的应用程序数据将自动备份,并在应用程序安装时恢复。您的 GCM regid 无法跨恢复工作,因此您必须确保将其从备份集中排除。使用属性 android:fullBackupContent 指定一个 @xml 资源,用于配置要备份的文件。更多信息: https://developer.android.com/training/backup/autosyncapi.html

FYR -
On SDK version 23 and up, your app data will be automatically backed up, and restored on app install. Your GCM regid will not work across restores, so you must ensure that it is excluded from the back-up set. Use the attribute android:fullBackupContent to specify an @xml resource which configures which files to backup. More info: https://developer.android.com/training/backup/autosyncapi.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文