java 用另一个替换片段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 用另一个替换片段相关的知识,希望对你有一定的参考价值。

// Create fragment and give it whatever arguments
YourSecondFragment newFragment = YourSecondFrament.newInstance(int Argument);
 
FragmentTransaction transaction = getSupportFragmentManager().beginTransaction(); 
 
// Replace whatever is in the fragment_container view with this fragment, 
// and add the transaction to the back stack so the user can navigate back 
transaction.replace(R.id.fragment_container, newFragment);
transaction.addToBackStack(null); 
 
// Commit the transaction 
transaction.commit(); 

以上是关于java 用另一个替换片段的主要内容,如果未能解决你的问题,请参考以下文章

用活动组内的另一个片段替换片段

替换 Viewpager 中的片段 [重复]

如何实现 FragmentManager 和 FragmentTransaction 来替换单个片段?

当替换片段视频仍在android中播放背景时

片段如何处理触摸?

用另一个动画大小更改替换子视图