Back to project page LocBox.
The source code is released under:
MIT License
If you think the Android project LocBox 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 com.codebrane.locbox; //from w w w . j a va2 s .c om import android.app.Fragment; import android.os.Bundle; import android.support.v4.app.FragmentActivity; public abstract class SingleFragmentActivity extends FragmentActivity { protected abstract Fragment createFragment(); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_fragment); if (savedInstanceState == null) { getFragmentManager().beginTransaction() .add(R.id.fragmentContainer, createFragment()).commit(); } } }