如何将桌面便笺应用程序转移到移动应用程序

问题描述:

我创建了一个Android移动应用程序,允许您创建笔记。我正在为我工​​作的一些工人制作这个应用程序。他们想在他们的电脑上使用该应用程序,同样的笔记将在他们的手机上,类似于OneNote。我怎样才能做到这一点?

I've created an Android mobile app that allows you to create notes. I am making this app for some workers at my job. They would like to use the app on their PC and the same notes will be on their phone, similar to OneNote. How can I accomplish this?

将数据与Parse.com等云存储解决方案同步,这也允许您在设备上使用本地存储,以便互联网不需要连接,您可以脱机处理数据,并在连接时将其同步回服务器。



亚马逊和谷歌也有可用于同步数据的基于云的数据库,但您需要滚动自己的离线存储并同步。
Sync the data with a cloud storage solution like Parse.com, which also allows you to use local storage on the device so the internet connection is not required all the time and you can work with the data offline and have it sync back to the server when a connection is present.

Amazon and Google also have cloud based databases that you can use to sync data, but you'll need to roll your own offline storage and sync.