I have an app that contains a listview, button and textview. By clicking the button I add a new item to the ListView using ArrayAdapter. Now implemented a service that receives information from the server. How can I update Listview from my service, this is the event that is fired when my server sends me an answer:
static void HandleOnRespose (object sender, ServerInEventArgs e)
{
//add in listview a reponse from server (e.CodeRespose)
}