My code is like this
I want to display Title,resumen,condition in one single row of listview
can u please help me.
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());
}