0

我在一个应用程序中工作,我从服务器获得连续响应,但是当我更改页面或移动到另一个屏幕时,应用程序停止。我正在接收来自服务器的响应,但它没有在列表视图中更新。

我也使用过onResumeandonPause方法,但我仍然收到错误消息。

代码;

protected class GetTask extends AsyncTask<Void, Void, Integer> {

        @Override
        protected Integer doInBackground(Void... params) {
            // TODO Auto-generated method stub
            try {
                CallReceiveMsgAPIService();
            } catch (Exception e) {
            }
            return 0;
        }

        @Override
        protected void onPostExecute(Integer result) {
            // TODO Auto-generated method stub
            super.onPostExecute(result);
            try {
                if (initiate != 1) {
                    mMessageHandle.sendEmptyMessage(0);
                    new GetTask().execute();

                    }
                } else {


                    mLiveChatList.setAdapter(adapter);
                    adapter.notifyDataSetChanged();
                    mLiveChatList.requestLayout();
                                        alert();
                }
            } catch (Exception e) {
            }

        }
    }

错误:

05-10 14:14:01.213: E/AndroidRuntime(277): FATAL EXCEPTION: main
05-10 14:14:01.213: E/AndroidRuntime(277): 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(2131361857, class android.widget.ListView) with Adapter(class com.$ChatListAdapter)]
05-10 14:14:01.213: E/AndroidRuntime(277):  at android.widget.ListView.layoutChildren(ListView.java:1492)
05-10 14:14:01.213: E/AndroidRuntime(277):  at android.widget.AbsListView.onTouchModeChanged(AbsListView.java:1960)
05-10 14:14:01.213: E/AndroidRuntime(277):  at android.view.ViewTreeObserver.dispatchOnTouchModeChanged(ViewTreeObserver.java:591)
05-10 14:14:01.213: E/AndroidRuntime(277):  at android.view.ViewRoot.ensureTouchModeLocally(ViewRoot.java:2021)
05-10 14:14:01.213: E/AndroidRuntime(277):  at android.view.ViewRoot.ensureTouchMode(ViewRoot.java:2005)
05-10 14:14:01.213: E/AndroidRuntime(277):  at android.view.ViewRoot.handleMessage(ViewRoot.java:1774)
05-10 14:14:01.213: E/AndroidRuntime(277):  at android.os.Handler.dispatchMessage(Handler.java:99)
05-10 14:14:01.213: E/AndroidRuntime(277):  at android.os.Looper.loop(Looper.java:123)
05-10 14:14:01.213: E/AndroidRuntime(277):  at android.app.ActivityThread.main(ActivityThread.java:4627)
05-10 14:14:01.213: E/AndroidRuntime(277):  at java.lang.reflect.Method.invokeNative(Native Method)
05-10 14:14:01.213: E/AndroidRuntime(277):  at java.lang.reflect.Method.invoke(Method.java:521)
05-10 14:14:01.213: E/AndroidRuntime(277):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
05-10 14:14:01.213: E/AndroidRuntime(277):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
05-10 14:14:01.213: E/AndroidRuntime(277):  at dalvik.system.NativeStart.main(Native Method)

任何人都可以让我摆脱这个..@谢谢

4

1 回答 1

0

列表发生变化后调用adapter.notifyDataSetChanged();,通知listView列表内容发生变化。这肯定会解决这个错误。

protected class GetTask extends AsyncTask<Void, Void, Integer> {
public interface TaskListener
{
public void updateResult(Object result);
}
private TaskListener listener;
        @Override
        protected Integer doInBackground(Void... params) {
            // TODO Auto-generated method stub
            try {
                CallReceiveMsgAPIService();
            } catch (Exception e) {
            }
            return 0;
        }

        @Override
        protected void onPostExecute(Integer result) {
            // TODO Auto-generated method stub
            super.onPostExecute(result);
            try {
                if (initiate != 1) {
                    mMessageHandle.sendEmptyMessage(0);
                    new GetTask().execute();

                    }
                } else {

          listener.updateResult(result);
                    //mLiveChatList.setAdapter(adapter);
                    //adapter.notifyDataSetChanged();
                   // mLiveChatList.requestLayout();
                                      //  alert();
                }
            } catch (Exception e) {
            }

        }
    }

在活动中实现此接口 TaskListener 并在 updateresult 方法中执行代码注释。

于 2013-05-10T08:18:54.133 回答