Back to project page ARGiE.
The source code is released under:
MIT License
If you think the Android project ARGiE 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 headrick.brandon.activities; /*from ww w .j av a 2s . c om*/ import headrick.brandon.R; import android.app.Activity; import android.os.Bundle; /** * provides global application options to the user * @author Brandon Headrick * */ public class SettingsActivity extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.settings_screen); } }