首页 >Java >java教程 >Android中如何动态替换硬编码片段?

Android中如何动态替换硬编码片段?

Patricia Arquette
Patricia Arquette原创
2024-11-21 06:29:10983浏览

How Can I Dynamically Replace Hard-coded Fragments in Android?

在活动组内动态替换片段

替换活动组内的片段可能会带来挑战。本文解决了当初始片段在 XML 中硬编码时将一个片段交换为另一个片段的问题。

解决方案

要动态替换片段,它必须具有最初是动态添加的。实现方法如下:

// Create new fragment and transaction
Fragment newFragment = new SectionDescriptionFragment();
FragmentTransaction transaction = getActivity().getSupportFragmentManager().beginTransaction();

// Replace the existing fragment
transaction.replace(R.id.book_description_fragment, newFragment);
transaction.setTransition(FragmentTransaction.TRANSIT_FRAGMENT_OPEN);
transaction.addToBackStack(null); // Optional: Add to back stack for navigation

// Commit the transaction
transaction.commit();

注意:

  • 确保 R.id.book_description_fragment 是父 Activity 中的布局容器。
  • 在动态添加之前删除 XML 中硬编码的任何片段。

以上是Android中如何动态替换硬编码片段?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn