タブ ビュー内のアクティビティから、同じタブ内の別のアクティビティに移動したいと思っています。
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);
}