Back to project page android-002.
The source code is released under:
Apache License
If you think the Android project android-002 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.michaelfitzmaurice.dailyselfie.settings; // w w w . j av a 2 s. c om import android.app.Activity; import android.os.Bundle; import com.michaelfitzmaurice.dailyselfie.R; public class SettingsActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getFragmentManager() .beginTransaction() .replace( android.R.id.content, new SettingsFragment() ) .commit(); setTitle(R.string.action_settings); } }