I am developing an Android project, and I have the following code segments that collect information into an “array”:
ArrayList<NameValuePair> data = new ArrayList<NameValuePair>();
data.add( new BasicNameValuePair("name", formName.getText().toString()) );
data.add( new BasicNameValuePair("test", "testing!") );
AsyncConnection connection = new AsyncConnection();
connection.execute(data);
My problem is how to read the individual members of this data list in my AsyncConnection class?
source
share