2016-10-14 12 views
0

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); 

私は作業用アプリケーションと同じコードを使用しました。

おかげ

+0

のエラーは何ですか? –

答えて

0

利用のgetContext()の代わりにMainActivity.this

 adapter = new SimpleAdapter(
      getContext(), contactList, 
      R.layout.list_item, new String[]{"listTitle", "tonart"}, new int[]{R.id.id, 
      R.id.tonart}); 
+0

私はすでにgetContext()でそれを試しました – Developer

+0

あなたはエラーを共有できますか? –

+0

問題は、私はエラーが出ないということです。そして、jsonデータはアダプターに入っています。 – Developer

関連する問題