Back to project page TimeTable.
The source code is released under:
MIT License
If you think the Android project TimeTable 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 uk.me.timlittle.tt1; //w w w . java 2 s .co m import android.app.Activity; import android.os.Bundle; /** * Settings activity that contains a fragment displaying the preferences. */ public class SettingsActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Display the preferences fragment as the content of the activity getFragmentManager().beginTransaction() .replace(android.R.id.content, new SettingsFragment()).commit(); } }