0
So guys, my question is this::
I have a ListView
which is popular for a request to my web service REST. Each item of this ListView
has a button. By clicking this button, the user logged into the app will be able to "follow" or "stop following" the entity represented in the item (something very similar to what happens when you "follow" an Instagram profile, for example).
My question is, how to maintain the status of the button on ListView
(If the user is following, write "following", if not write "following").
Would the best way would be for me to already submit whether or not the user follows that entity in the request to the web service that fills the list, manipulating the returned JSON?
I accept suggestions =)