Im new to android. I wanted to develop an application with the following screens
Login
Menu
News
After login, the Menu activity will be displayed. On clicking on News option from the menu activity I would like to display the News screen. I will have to send a message to the server and on receiving the reply, the data received in the Reply message will have to be displayed in the News Activity.
Can I start an intent service from the Menu screen and handle SENDING and RECEIVING the messages in that. On receiving the message (its on a different thread - API thread), broadcast it to Activity using Broadcast Receiver? or How do I do this?
I have a DATE field in the News screen and on changing the date, the data has to be refreshed.i.e Request has to be sent to the server with the modified date and the updated data received has to be displayed. How can this be achieved?
Please help.