so far i have this:
btnAddContact.Click += delegate {
String[] nameList = new string[]{nameText.Text, ipText.Text};
var myAdapter = new ArrayAdapter(this, Resource.Layout.TextViewItem, nameList);
contactView.Adapter = myAdapter;
myAdapter.NotifyDataSetChanged();
nameText.Text = "";
};
Two EditText fields, a button and a ListView - when i add data into the two text fields and click the button it adds the data to an array and then displays it in the ListView.. except if i try to add another value to the array via the text fields, it just changes what was already entered..
how do i do this so it keeps adding the data forming a list?