嗨,我有以下问题:
data.clear(); data.addAll(datasource.getFilesInFolder()); //gets the data from sqlite database adapter.notifyDataSetChanged();
12-19 14:34:30.864: W/Binder(986): Caught a RuntimeException from the binder stub implementation. 12-19 14:34:30.864: W/Binder(986): java.lang.NullPointerException 12-19 14:34:30.864: W/Binder(986): at android.inputmethodservice.IInputMethodWrapper.setSessionEnabled(IInputMethodWrapper.java:280) 12-19 14:34:30.864: W/Binder(986): at com.android.internal.view.IInputMethod$Stub.onTransact(IInputMethod.java:129) 12-19 14:34:30.864: W/Binder(986): at android.os.Binder.execTransact(Binder.java:404) 12-19 14:34:30.864: W/Binder(986): at dalvik.system.NativeStart.run(Native Method) 12-19 14:34:30.864: W/InputMethodManagerService(757): Got RemoteException sending setActive(false) notification to pid 30040 uid 10174
这个例外导致胜利死亡……
好吧,我意识到也许是反过来,WIN DEATH导致这个日志输出,因为在日志WINDEATH之前来了,那么我不知道为什么windeath会发生.
我的适配器是扩展BaseAdapter,没有什么特别之处.以下是非常奇怪的:
提到的代码段位于自定义侦听器中,该侦听器由另一个类触发.当我将有问题的部分放在听众之外时,它运作良好.
我从绑定存根实现意义上做了Caught a RuntimeException吗?这可能是数据库的问题吗?或者也许是我的自定义听众?
任何人都知道什么是错的?
解决方法
在执行并发操作时,我已经看到了遇到此问题的各种问题.例如,参见
this thread(fling service)和
this one(从2个线程在画布上绘图).
你在谈论一个不同类的自定义监听器,你是否也可以同时做几件事?