替换活动组中的片段
如果您不熟悉 Android 碎片框架,替换活动组中的片段可能是一项复杂的任务.
问题
当尝试用另一个片段替换活动组内的片段时,您可能会遇到代码看似成功执行但没有发生视觉变化的情况。这可能会令人困惑,因为没有显示任何异常消息。
解决方案
问题的根源在于 XML 中硬编码的片段无法替换。相反,应该动态添加片段以允许替换。
动态添加和替换片段:
示例代码
Fragment newFragment = new ExampleFragment(); FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); transaction.replace(R.id.fragment_container, newFragment); transaction.addToBackStack(null); transaction.commit();
注意:
以上是为什么我的 Android 活动组中的片段没有互相替换?的详细内容。更多信息请关注PHP中文网其他相关文章!