内容适配器和异步回调

时间:2013-03-12 13:49:49

标签: android android-asynctask kinvey

我正在使用第三方云服务(Kinvey)来获取我的应用的数据。服务的所有Kinvey方法都包含在异步类中。我目前正在收到下面的错误日志,我理解为什么我会得到它。我只是不知道如何解决这个问题。

错误:

03-12 13:41:03.449: E/AndroidRuntime(18375): FATAL EXCEPTION: main

03-12 13:41:03.449: E/AndroidRuntime(18375): java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread. [in ListView(2130968661, class android.widget.ListView) with Adapter(class com.example.chartviewer.LazyAdapter)]


这是我的代码段,我在异步方法中删除内容后通知我的适配器:

mKinveyClient.appData("artistdata", ArtistData.class).delete(artistID, new KinveyDeleteCallback() {

       @Override
        public void onSuccess(KinveyDeleteResponse result) {

              Log.e("DELEET", "Data Deleted sucessfully");
              Toast.makeText(getBaseContext(),
                      "Artist Deleted", Toast.LENGTH_SHORT).show();

                //refreshes list 
            adapter.notifyDataSetChanged(); 

           //displays dialog box if no artists left 
           displayNoArtist();

        }
        @Override
        public void onFailure(Throwable error) {
             Log.e("DELETE", "AppData.delete Failure", error);
        }
    });


更新适配器:

mKinveyClient.appData("artistdata", ArtistData.class).get(myQuery, new 
KinveyListCallback<ArtistData>() {
         @Override
         public void onSuccess(ArtistData[] result) {

              Log.e("FETCHING", "Data fetched sucessfully");
             for (ArtistData data : result) {


                 String name= data.getArtistname();
                 String imageurl = data.getArtisturl();

                 String id = data.getArtistid();

                 artistIds.add(id);

                  HashMap<String, String> hashMap = new HashMap<String, String>();

                  hashMap.put(TAG_NAME, name);
                  hashMap.put(TAG_IMAGEURL, imageurl);

                  addMyArtists(hashMap);


             }

             displayData();

         }

         @Override
         public void onFailure(Throwable error) {

             Log.e("FETCHING", "AppData.get by Query Failure", error);

         }
     });


适配器创建者代码:

      list = (ListView)findViewById(R.id.artistlist);
      adapter = new LazyAdapter(MyArtistsActivity.this,"artists", artistItemList);
      list.setAdapter(adapter);
      registerForContextMenu(list);

1 个答案:

答案 0 :(得分:2)

免责声明:我是Kinvey工程团队的成员。

问题是您在从Kinvey后端删除之前从artistItemList中删除,然后在回调之前不调用adapter.notifyDatasetChanged。这会导致您在等待来自后端Kinvey删除调用的回调时发现底层数据集已更改的滞后。您需要将这两个调用组合在一起,并以两种方式之一进行:

  1. 将您传递给delete方法的artistID设为final,并在onSuccess中,在调用adapter.notifyDatasetChanged之前从artistItemList中删除该项。
  2. 在从artistItemList中删除项目之后立即调用kinveyClient.appData()。delete()方法之前调用adapter.notifyDatasetChanged。如果Kinvey后端的删除失败,此选项可能会导致问题。