私のコードは、私はuが私を助けてくださいすることができますタイトル、概要、リストビュー2つの配列リストをアンドロイドのリストビューにバインドする方法は?
の1つの行の状態を表示するこの
のようなものです。
Titles=new ArrayList<String>();
Resumens=new ArrayList<String>();
Conditions=new ArrayList<String>();
for(int i=0;i<resp2.getPropertyCount();i++)
{
SoapObject table = (SoapObject)resp2.getProperty(i);
Titles.add(table.getProperty("Titulo").toString());
Resumens.add(table.getProperty("Resumen").toString());
Conditions.add(table.getProperty("Condiciones").toString());
}