Problème d'affichage dans une ListView
je veux afficher des string dans une expandable listview
je récupère mes informations et j'ai une problème d'affichage
voilà mon code
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
for(int i=0;i<root.getConfigurationArray("InfosCollected").size();i++){
Array rr = root.getConfigurationArray("InfosCollected");
Dict d = (Dict)rr.get(i);
d.getConfiguration("Name").getValue();
nom.add(d.getConfiguration("Name").getValue());
Log.i("tag",nom.get(i)+" bb" );
final HashMap<String, String> map = new HashMap<String,String>();
map.put(NAME, nom.get(i) );
// map.put(DATA, "aaa");
group1data.add(map);
} |