0

タブ ビュー内のアクティビティから、同じタブ内の別のアクティビティに移動したいと思っています。

public void onClick (View view) {
    // This creates an intent to call the 'Called' activity             
    i1 = new Intent(this.getBaseContext(),Called.class);

    // calls the method to replace View.    
    replaceContentView("Called", i1);
}
4

1 に答える 1

0

これを試して...

TabSpec spec=...//our tabSpec
Intent intent = new Intent(this.getBaseContext(), Called.class);
spec.setContent(videosIntent);
于 2012-09-11T12:33:48.940 に答える