Back to project page cube-sdk.
The source code is released under:
Apache License
If you think the Android project cube-sdk 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 in.srain.cube.mints.base; //from w w w . ja va 2 s . com import in.srain.cube.R; import in.srain.cube.app.XActivity; public abstract class DemoBaseActivity extends XActivity { @Override protected String getCloseWarning() { return getString(R.string.cube_mints_exit_tip); } @Override protected int getFragmentContainerId() { return 0; } }