0

i'm developing an android application which allows different users to login and see a list of favourite songs. Each user has its list of songs, and a song is an instance of the corresponding class Song, with some attributes (singer, year, title...). The MainActivity contains the form for the login, so the user has to set its Name and Password. After login, a second activity is started, and it contains the ListView with the user's favourite songs.

How can i associate a single user to its corresponding song's list? I thinked to use a database to store the songs, but then?

4

1 回答 1

0

看看Parse,它非常易于使用,让您专注于您的 android 应用程序,而不是花费大量时间编写和配置服务器端应用程序。

您还需要在您的 android 应用程序上实现一个服务来处理 json(或 xml,这是您的选择)。这是一个很棒的库来处理 json JSONP

另请查看此链接以获取有关RESTful服务的概述。

例如(获取用户信息):

  1. 您需要有关 userA 的信息。
  2. 您使用正确的信息格式化 json。
  3. 向您的服务器发起一个 http 请求。它会用另一个包含一些信息的 json 来回答你。
  4. 解析收到的这个 json 并在您的应用程序中使用数据。

我希望我说清楚了。

于 2013-09-11T09:08:16.097 回答