Back to project page RingMyPhoneAndroid.
The source code is released under:
MIT License
If you think the Android project RingMyPhoneAndroid 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.darkrockstudios.apps.ringmyphone; // ww w . j a v a 2 s . c o m import android.app.Activity; import android.os.Bundle; /** * Created by adam on 3/2/14. */ public class SettingsActivity extends Activity { @Override protected void onCreate( Bundle savedInstanceState ) { super.onCreate( savedInstanceState ); getFragmentManager().beginTransaction() .replace( android.R.id.content, new SettingsFragment() ) .commit(); } }