Question

I want to switch from one Tab to another tab. For that i am using below code:

public void switchTabInActivity(int indexTabToSwitchTo){
    AccidentTabActivity ParentActivity;
    ParentActivity = (AccidentTabActivity) getParent(); // here i am getting exception
    ParentActivity.switchTab(indexTabToSwitchTo);
    }

I am calling this method from which i want to navigate.

But i got exception of cast class.

Log cat:

10-04 15:39:22.327: ERROR/AndroidRuntime(1016): FATAL EXCEPTION: main
10-04 15:39:22.327: ERROR/AndroidRuntime(1016): java.lang.ClassCastException: com.project.AccidentApp.TabGroupHomeActivity
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at com.project.AccidentApp.KnowWhatToDoMenuActivity.switchTabInActivity(KnowWhatToDoMenuActivity.java:189)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at com.project.AccidentApp.KnowWhatToDoMenuActivity$3.onClick(KnowWhatToDoMenuActivity.java:155)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:159)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at android.os.Handler.dispatchMessage(Handler.java:99)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at android.os.Looper.loop(Looper.java:130)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at android.app.ActivityThread.main(ActivityThread.java:3683)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at java.lang.reflect.Method.invokeNative(Native Method)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at java.lang.reflect.Method.invoke(Method.java:507)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:839)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:597)
10-04 15:39:22.327: ERROR/AndroidRuntime(1016):     at dalvik.system.NativeStart.main(Native Method)

UPDATED

TabGroupHomeActivity.java

public class TabGroupHomeActivity extends TabGroupActivity{ 
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        startChildActivity("KnowWhatToDoMenuActivity", new Intent(this,KnowWhatToDoMenuActivity.class));
    }


}

AccidentTabActivity.java

public class AccidentTabActivity extends TabActivity 
{
    private TabHost tabHost;
    public void onCreate(Bundle savedInstanceState) 
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main_tab);

        tabHost = getTabHost();  // The activity TabHost
        TabHost.TabSpec spec;  // Resusable TabSpec for each tab
        Intent intent;  // Reusable Intent for each tab

        /////////////////////////////
        intent = new Intent().setClass(this,TabGroupHomeActivity.class);
        // Initialize a TabSpec for each tab and add it to the TabHost
        spec = tabHost.newTabSpec("Menu").setIndicator(prepareTabView("Menu",R.drawable.menul)).setContent(intent);
        tabHost.addTab(spec); // error at this line

        intent = new Intent().setClass(this,TabGroupStepsActivity.class);
        // Initialize a TabSpec for each tab and add it to the TabHost
        spec = tabHost.newTabSpec("Steps").setIndicator(prepareTabView("Steps",R.drawable.tab_step)).setContent(intent);
        tabHost.addTab(spec); 

        intent = new Intent().setClass(this,TabGroupProfileActivity.class);
        // Initialize a TabSpec for each tab and add it to the TabHost
        spec = tabHost.newTabSpec("Profile").setIndicator(prepareTabView("Profile",R.drawable.tab_profile)).setContent(intent);
        tabHost.addTab(spec);       

        intent = new Intent().setClass(this,TabGroupContactUsActivity.class);
        // Initialize a TabSpec for each tab and add it to the TabHost
        spec = tabHost.newTabSpec("Contact").setIndicator(prepareTabView("Menu",R.drawable.tab_contact)).setContent(intent);
        tabHost.addTab(spec);


        tabHost.setCurrentTab(0);




    }

     private View prepareTabView(String text, int resId) {
         View view = LayoutInflater.from(this).inflate(R.layout.tabs, null);
         ImageView iv = (ImageView) view.findViewById(R.id.tabImageView);
         TextView tv = (TextView) view.findViewById(R.id.tabTextView);
         iv.setImageResource(resId);
         tv.setText(text);
         return view;
    }

     public void switchTab(int tab){

         //getLocalActivityManager().getActivity(tab);
            //String strTab = ""+tab;
            tabHost.setCurrentTab(tab);


    }
}
Was it helpful?

Solution

Try to declare tabhost as static and call in child activity as below..

Instead private TabHost tabHost;

try static TabHost tabHost;

And in your Child Activity

 AccidentTabActivity.tabHost.setCurrentTab(2);

Then you can set your current tab as you want.

OTHER TIPS

From your exception getParent() is not giving you an instance of AccidentTabActivity. Can you show us AccidentTabActivity and TabGroupHomeActivity classes? I don't think we'll be able to help you debug without thoses classes.

Ps: Java conventions stipulates not to start variable names with uppercase as in your code AccidentTabActivity ParentActivity; see http://docs.oracle.com/javase/tutorial/java/nutsandbolts/variables.html. Not a critism, but your code will be more readable.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top