我正在尝试在列表视图中列出 json 数据。我的应用程序适用于 froyo 和 blue stacks 模拟器。但它没有在我的手机和我朋友的手机上列出任何东西ListView
(它们都是 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);