私は Android プロジェクトを開発しており、情報を「配列」に収集する次のコード セグメントがあります。
//setup array containing submitted form data
ArrayList<NameValuePair> data = new ArrayList<NameValuePair>();
data.add( new BasicNameValuePair("name", formName.getText().toString()) );
data.add( new BasicNameValuePair("test", "testing!") );
//send form data to CakeConnection
AsyncConnection connection = new AsyncConnection();
connection.execute(data);
私の問題は、AsyncConnection クラスでそのデータ リストの個々のメンバーを読み取る方法です。