Simpleadapterに基づいてリストビューを正常に実装しました。今私は3つのタブに私のアプリケーションを分割したかった。しかし、もし私が断片的にsimpleadapterを設定したいのであれば、リストビューは何も表示せず、エラーも表示されません。SimpleAdapterをListViewのフラグメントに設定する
protected void onPostExecute(Void result) {
super.onPostExecute(result);
// Dismiss the progress dialog
if (pDialog.isShowing())
pDialog.dismiss();
/**
* Updating parsed JSON data into ListView
* */
adapter = new SimpleAdapter(
this.getContext(), contactList,
R.layout.list_item, new String[]{"listTitle", "tonart"}, new int[]{R.id.id,
R.id.tonart});
lv.setAdapter(adapter);
私は作業用アプリケーションと同じコードを使用しました。
おかげ
のエラーは何ですか? –