Syncing to the Cloud [云同步]
- 通过提供强大的APIs来进行网络连接,Android的Framework帮助你建立可以进行云同步的apps,可以实现同步数据到远程服务器,这样确保所有你的设备总是保持同步的状态,你的有价值的数据总是云备份的。
- 这一章节会介绍不同的方法来进行云同步。它会把你的程序中需要同步的数据备份到云端,这样当你在新的设备上安装这个程序的时候会自动把备份的数据进行恢复到当前设备。
- [很显然,是否具有云同步的功能已经很大程度上左右了一个app的受欢迎程度,特别是在类音乐程序,读书程序,记事程序等等]
Lessons
这一章我们将学习下面2个内容,需要提前看的同学请点击下面文章的链接直接看官方原文,在逐一成文之后,我会添加本博客对应课程的链接,谢谢!
-
Syncing with App Engine. [使用App程序引擎进行同步]
- Learn how to create a paired App Engine app and Android app which share a data model, authenticates using the AccountManager, and communicate with each other via REST and C2DM. Using the Backup API [使用备份数据的API]
- Learn how to integrate the Backup API into your Android Application, so that user data such as preferences, notes, and high scores update seamlessly (无缝的) across all of a user's devices
-
转载请注明出处: http://blog.youkuaiyun.com/kesenhoo,谢谢!
【Android Advanced Training - 08】云同步的实现 [Lesson 1 - 使用App Engine进行同步]