Back to project page umbrella.alert.
The source code is released under:
GNU General Public License
If you think the Android project umbrella.alert 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 macbury.umbrella.activity; //from ww w . j a v a 2 s.c o m import android.app.Activity; import android.os.Bundle; import macbury.umbrella.R; import macbury.umbrella.fragments.SettingsFragment; /** * Created by macbury on 28.08.14. */ public class SettingsActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.layout_settings); getFragmentManager().beginTransaction() .replace(R.id.container, new SettingsFragment()) .commit(); } }