Back to project page UK-Weather-repo.
The source code is released under:
Apache License
If you think the Android project UK-Weather-repo 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.haringeymobile.ukweather; /*from w ww . j a va2 s.com*/ import android.annotation.SuppressLint; import android.os.Bundle; import android.support.v7.app.ActionBarActivity; /** An activity containing a settings fragment. */ public class SettingsActivity extends ActionBarActivity { @SuppressLint("NewApi") @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getFragmentManager().beginTransaction() .replace(android.R.id.content, new SettingsFragment()).commit(); } }