Hello Everyone, When I ran focus monkey test to com.android.settings, I always got a NullPointerException, the NullPointerException always happended in the process of com.android.inputmethod.latin. The details log is below:
//=======================log begin================================ // CRASH: com.android.inputmethod.latin (pid 1540) // Short Msg: java.lang.NullPointerException // Long Msg: java.lang.NullPointerException // Build Label: asus/epc1015/epc1015:2.3/EPC1015/eng.kyle. 20110124.175834:eng/test-keys // Build Changelist: eng.kyle.20110124.175834 // Build Time: 1295867094000 // java.lang.NullPointerException // at android.inputmethodservice.IInputMethodSessionWrapper.executeMessage(IInputMethodSessionWrapper.java: 93) // at com.android.internal.os.HandlerCaller $MyHandler.handleMessage(HandlerCaller.java:61) // at android.os.Handler.dispatchMessage(Handler.java:99) // at android.os.Looper.loop(Looper.java:123) // at android.app.ActivityThread.main(ActivityThread.java:3647) // at java.lang.reflect.Method.invokeNative(Native Method) // at java.lang.reflect.Method.invoke(Method.java:507) // at com.android.internal.os.ZygoteInit $MethodAndArgsCaller.run(ZygoteInit.java:839) // at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597) // at dalvik.system.NativeStart.main(Native Method) // // NOT RESPONDING: com.android.settings (pid 5652) ANR in com.android.settings (com.android.settings/.LocalePicker) Reason: keyDispatchingTimedOut //=======================log end================================ >From the log, we knew that the NullPointerException was happened in File IInputMethodSessionWrapper.java and Line 93, I pasted the NullPointerException's context below: //================code begin============================ 91: case DO_DISPATCH_KEY_EVENT: 92: HandlerCaller.SomeArgs args = (HandlerCaller.SomeArgs)msg.obj; 93: mInputMethodSession.dispatchKeyEvent(msg.arg1, 94: (KeyEvent)args.arg1, 95: new InputMethodEventCallbackWrapper( 96: (IInputMethodCallback)args.arg2)); 97: mCaller.recycleArgs(args); //================code end============================== My OS version is android gingerbread(2.3). Had anyone met this issue? Except a good soul to help me. Thanks very much. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

