I am trying to change may current Tab. I search for fitting problems but it not solved my own one. I have a Tab activity like this

<!-- language: java -->   
public class myTabActivity extends TabActivity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    final TabHost mtabHost = getTabHost();
    int tabnum = getIntent().getIntExtra("currenttab", 0);


    mtabHost.addTab(mtabHost.newTabSpec("tab1")
            .setIndicator("firsttab")
                .setContent(new Intent(this, tabA.class)));
    mtabHost.addTab(mtabHost.newTabSpec("tab1")
            .setIndicator("secondtab")
                .setContent(new Intent(this, tabB.class)));
     setCurrentTab(tabnum);
}
private boolean setCurrentTab(int i) {
    if (getParent() instanceof SimpleSundayScoutUIActivity) {
        ((SimpleSundayScoutUIActivity) getParent()).getTabHost().setCurrentTab(i);
        return true;
    }
    return false;
}

and an activity tabA like this

public class text extends Activity {
myTabActivity mA = (myTabActivity) this.getParent();
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.mainpage);
    Button startbutton= (Button) findViewById(R.id.searchbutton);
    startbutton.setOnClickListener(mNewListener);
}
private OnClickListener mNewListener = new OnClickListener() {

    public void onClick(View v) {
       Intent intent = new Intent(v.getContext(),SimpleSundayScoutUIActivity.class);
       intent.putExtra("currenttab", 1);
       startActivity(intent);
    }
};

means what i want to do is klick on the Button of tabA and then the tab widget should show me tabB but it doesnt work like this

any suggestions? sry am not really fit in quoting hope it is readable

thanks for help patrick

edit

mokup for what i want to do http://tinypic.com/r/f6uyq/5

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Edited:

Tab class:

public class myTabActivity extends TabActivity {
public static TabHost mtabHost; // change to public static
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
     mtabHost = getTabHost();
    int tabnum = getIntent().getIntExtra("currenttab", 0);


    mtabHost.addTab(mtabHost.newTabSpec("tab1")
            .setIndicator("firsttab")
                .setContent(new Intent(this, tabA.class)));
    mtabHost.addTab(mtabHost.newTabSpec("tab1")
            .setIndicator("secondtab")
                .setContent(new Intent(this, tabB.class)));
     setCurrentTab(tabnum);
}
private boolean setCurrentTab(int i) {
    if (getParent() instanceof SimpleSundayScoutUIActivity) {
        ((SimpleSundayScoutUIActivity) getParent()).getTabHost().setCurrentTab(i);
        return true;
    }
    return false;
}

Button Class:

public class text extends Activity {
myTabActivity mA = (myTabActivity) this.getParent();
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.mainpage);
    Button startbutton= (Button) findViewById(R.id.searchbutton);
    startbutton.setOnClickListener(mNewListener);
}
private OnClickListener mNewListener = new OnClickListener() {

    public void onClick(View v) {
     myTabActivity.mtabHost.setCurrentTab(1); //Remove .this 

    }
};
link|improve this answer
hey :) .. sry this dont solve my problem .. i know this example i dont want to set my tab all the time if i klick on the button of one tab i want to activate an other tab of my tab widget like this tinypic.com/r/f6uyq/5 – user1052984 Dec 14 '11 at 17:23
1  
Aha, let me a minute to edit ;-) – iSun Dec 14 '11 at 17:36
1  
Done , Check my edits. – iSun Dec 14 '11 at 17:41
:) thx .. but in my class tabA i dont have "mtabHost" how can i acces it .. i tryed to make mytabActivity as singelton and get in tabA the instance of myTabActivity .. but it also dont work how could i set the current tab in an activity – user1052984 Dec 14 '11 at 18:23
1  
hey :) .. thx my i found the failure but u also changed it .. now it works .. much thx :) – user1052984 Dec 14 '11 at 18:45
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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