I'm very new to android programming and working on an Android app.
I have 2 teams - A and B.
I have a Activity A for team A where I have 3 ImageView to place images from Server. Each time any user from team B uploads images to the server, I want the images to be downloaded from Server and placed on ImageView in Activity A with a notification saying new images are here.
Currently, I'm able to download images from Server and able to place them on ImageView manually, but I want a Service for this which will run constantly for this.
I googled a lot but couldn't find any good example for this process. Please help me with this.
I want to use Service
**I'm using Volley for networking
Thanks.