Back to project page C2Framework.
The source code is released under:
Apache License
If you think the Android project C2Framework listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package gaia.c2.context; //from www .j a v a 2 s . c o m import gaia.c2.context.view.C2View; /** * Created by kmr on 4/8/14. */ public abstract class DefaultC2Context extends C2Context { protected int containerId; @Override protected void handleViewChange(C2View fromView, C2View toView) { getSupportFragmentManager().beginTransaction() .replace(containerId, toView.getFragment()) .commit(); } }