Apps like Facebook,whatsapp,any other news app *get the things updated * like the status,newsfeed,chats how it works and is there any tutorial for doing stuff like this(Newsfeed,chat,etc)
Asked
Active
Viewed 42 times
2 Answers
0
Regular way is to reconnecting to server after specific time. For example use Handler
to get new updates from server every 30 seconds. Look at below code:
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
while (true) {
getUpdates();
handler.postDelayed(this, 30000);
}
}
}, 30000);

Amirhossein Naghshzan
- 1,178
- 8
- 17