I have been struggling with this for a few days now. I'm trying to switch tabs programmatically upon a button click. My program works flawlessly if I just use the tabs to change activities, but wiring an onClick method with setCurrentTab results in an error. This is the method that will not work. It's a pretty basic and straightforward function but I haven't seen much documentation or examples of people attempting to wire a buttonclick with switching tabs. Thanks.

ImageButton next = (ImageButton) findViewById(R.id.ButtonAsk);
 next.setOnClickListener(new View.OnClickListener() 
         {         
  public void onClick(View view)  
             {

                TabHost tabHost =  (TabHost) findViewById(android.R.id.tabhost);
              tabHost.setCurrentTab(2);                
             }
         });

This is the error log:

12-23 15:39:21.439: ERROR/AndroidRuntime(327): Uncaught handler: thread main exiting due to uncaught exception
12-23 15:39:21.459: ERROR/AndroidRuntime(327): java.lang.NullPointerException
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at com.example.tabssample.HomeActivity$1.onClick(HomeActivity.java:38)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.View.performClick(View.java:2364)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.View.onTouchEvent(View.java:4179)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.View.dispatchTouchEvent(View.java:3709)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:1659)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1107)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.app.Activity.dispatchTouchEvent(Activity.java:2061)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:1643)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:884)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:1659)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1107)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.app.Activity.dispatchTouchEvent(Activity.java:2061)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:1643)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.view.ViewRoot.handleMessage(ViewRoot.java:1691)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.os.Handler.dispatchMessage(Handler.java:99)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.os.Looper.loop(Looper.java:123)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at android.app.ActivityThread.main(ActivityThread.java:4363)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at java.lang.reflect.Method.invokeNative(Native Method)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at java.lang.reflect.Method.invoke(Method.java:521)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
12-23 15:39:21.459: ERROR/AndroidRuntime(327):     at dalvik.system.NativeStart.main(Native Method)
link|improve this question
feedback

2 Answers

There is no widget with @android:id/tabhost in the current activity. Hence, findViewById() returns null, and your call to setCurrentTab() fails.

Now, my guess is that is because you are putting activities in your tabs. Had you put Views in your tabs, your code would work. Your code would also be faster, take up less heap space, and be at reduced risk of running out of stack space.

If you wish to stick with your current implementation, try calling getParent().findViewById() instead of just findViewById().

link|improve this answer
getParent() worked like charm – Ayaz Alavi Jan 2 at 5:57
feedback

Agreed with CommonsWare, setting tabHost.setCurrentTab(index) works, where index is the index of the tab you want activated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.