安卓。用于列出好友列表的网络应用程序
我有一个 Android 应用程序,用户经常会对一个对象进行排名,例如外观(满分 5 分)、感觉(满分 5 分)和名称。然后我将其存储在一个对象和共享首选项中。我已经完成了这一部分,但我不确定如何进行下一步。
我想做的是创建一个朋友列表,让他们接收该人的所有统计数据,而且每次他们按下按钮时,它都会将新的统计数据发送给朋友列表上的每个人。我还希望能够进入每个朋友并查看他的所有统计数据,例如我将向比利鲍勃发送他接受的请求并将其添加到我的朋友列表中。然后他收到我的所有统计数据,我也收到他的统计数据,以便我可以随时查看他的统计数据。
我正在寻找的是关于执行此操作的最佳方法以及从哪里开始的建议(我之前做过一些编程,但没有进行大量的网络工作)?我知道我可以使用 SQLite 甚至 WebServices,但我不确定最好的方法。
I have a Android app where every so often the user will rank an object e.g looks out of 5, feel out of 5, and a name. I then store this in an object and into shared prefs. I have completed this part but im not sure how to go about the next bit.
What I want to do is make a friends list and have them receive all the stats from that person plus everytime they push the button it will send the new stats to everyone on your friends list. I also want to be able to go into each friend and look at all his stats e.g I'll send Billy Bob a request he accepts and is add to my friends list. He then receives all my stats and I get his so that I can look at his stats at any time.
What I am looking for is advice on the best way to do this and where to start (I have done a bit of programming before but not a lot of networking)? I understand I could use SQLite or maybe even WebServices but I am not sure the best way to go about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要一个服务器组件来实现此目的。
你的服务器的一些关键字
You need a server component to achieve this.
Some keywords for your server