通过定期活动,您可以使用
// Display the fragment as the main content.
getFragmentManager().beginTransaction()
.replace(android.R.id.content, new SettingsFragment())
.commit();
用另一个片段替换您的主要内容。使用 Eclipse 中默认的可滑动选项卡活动,这只会将您的新片段覆盖在其他片段之上。我可以以某种方式获取整个 ViewPager 的 id 并替换它而不是 android.R.id.content 吗?我想用我的新片段替换所有选项卡。