I am writing an application for Android devices.

After finishing the development and testing the program, I find that the following NullPointerException is thrown only on the Samsung Galaxy S. The application does not have this problem on other Android devices.

The error message captured in logcat is,

05-06 09:09:15.919: ERROR/AndroidRuntime(10657): java.lang.NullPointerException
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.widget.TabHost.dispatchWindowFocusChanged(TabHost.java:298)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:662)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:662)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.widget.TabHost.dispatchWindowFocusChanged(TabHost.java:302)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.widget.TabHost.dispatchWindowFocusChanged(TabHost.java:302)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:662)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:662)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.view.ViewGroup.dispatchWindowFocusChanged(ViewGroup.java:662)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.view.ViewRoot.handleMessage(ViewRoot.java:1921)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.os.Handler.dispatchMessage(Handler.java:99)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.os.Looper.loop(Looper.java:123)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at android.app.ActivityThread.main(ActivityThread.java:4627)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at java.lang.reflect.Method.invokeNative(Native Method)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at java.lang.reflect.Method.invoke(Method.java:521)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:871)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:629)
05-06 09:09:15.919: ERROR/AndroidRuntime(10657):     at dalvik.system.NativeStart.main(Native Method)

It has not point out which line in my source code causes the problem. I checked the TabHost object and it is not null.

Could anyone give me some idea to solve it?? Thanks a lot.

link|improve this question

50% accept rate
1  
Does this happen on application startup or does something you do in the application trigger it? Even if you can't see your code with a line number in logcat, you should be able to attach the debugger and figure out see roughly what you're doing when this error occurs. – Jordan May 6 '11 at 1:30
This issue triggered after I click the tab. And a interesting thing is there have five tab in this tab host, and I click three of them is ok, only two tab have trggier this error.... – Rebecca May 6 '11 at 1:38
1  
Good, getting closer. What's different about the two tabs that crash as compared to the three that don't? Also, posting code would allow us to more closely see what's going on. – Jordan May 6 '11 at 1:44
A good news, I get back the previous version and run on galaxy s, it works. The different between this two version is I add a TabHost into a ViewFlipper. Dose it has any wrong syntax in the layout XML?? Because the currently layout tree in my program at this part is, TabHost > ViewFiler > TabHost – Rebecca May 6 '11 at 3:13
Please post the contents of the XML layout file in question - it's difficult to identify syntax errors without seeing the code. – Jordan May 6 '11 at 3:57
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.