I'm going to create an iGoogle Gadget, and an Android version as well. User data will be saved in the gadget like this (javascript):
var prefs = new gadgets.Prefs();
prefs.set("foo","bar");
In Android side, the app will login with user'开发者_运维百科s Google Account. Is it possible to access user data in the gadget preferences? If not, any other way to store user data that both Gadget and Android can access with Google Account?
精彩评论