2014-01-29 47 views

回答

0
FooFragment f = new FooFragment(); 

getSupportFragmentManager().beginTransaction() 
       .replace(R.id.container, f) 
       .commit(); 

您需要使用片段管理器才能加載片段,我想您已經使用支持庫。

相關問題