I’m trying to list json data in a listview. My application works on froyo and blue stacks emulator. But it’s not listing anything in ListView on my phone and my friend’s phone(both of them are ICS)
ListView list = (ListView) findViewById(R.id.lstEcz);
SimpleAdapter mSchedule = new SimpleAdapter(
this, nobList, R.layout.nob_eczane,
new String[] { "istasyon", "adres", "tel", "ilce" },
new int[] { R.id.tvEczAd, R.id.tvEczAdres, R.id.tvEczTel, R.id.tvEczIlce }
);
list.setAdapter(mSchedule);
1 Answer