在标签中创建多个活动

时间:2012-09-11 12:05:13

标签: android tabs

我真的想从标签视图中的活动转移到同一标签内的另一个活动。

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);
}

1 个答案:

答案 0 :(得分:0)

试试这个......

TabSpec spec=...//our tabSpec
Intent intent = new Intent(this.getBaseContext(), Called.class);
spec.setContent(videosIntent);