Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'a currently building an app for android that users connect to it by UserName and Password.

When ever a user connects the server should recognized if he has any unread msg's (msgs are uploaded by the user) if he has an unread msg i want all of the users to see that he has an unread msg by adding an icon near his nickname so everyone will see this icon (it doesnt matter if an icon is added or the nickname is colored in red)

What I need is a good tutorial or some code example i can learn from about such a thing.

Any Help would be great.

Kind Reggards

share|improve this question
SwiFTP could be interesting to look at. – m0skit0 May 3 '12 at 22:11

closed as not constructive by casperOne May 4 '12 at 15:30

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 0 down vote accepted

I'd recommend looking at the

https://developers.google.com/eclipse/docs/appengine_connected_android

connected sample. The key thing that it does is request the account from the AccountManager API so it's easy to track users. (it also includes C2DM code that can be used to push messages to the users so that they don't actually have to poll the server to get updates)

AppEngine can then be used to create a database-based system that can be used to manage the message data on the back end. If you'd rather use another server environment, the connected code is still relevant, but you'll have to modify it for the architecture you choose to use.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.