Back to project page StudySpaces.
The source code is released under:
Apache License
If you think the Android project StudySpaces 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.pennstudyspaces; /*from w w w. ja va 2s . co m*/ import android.os.Bundle; import android.preference.PreferenceActivity; /** * Created with IntelliJ IDEA. * User: Daniel Ge * Date: 3/31/12 * Time: 4:45 PM * To change this template use File | Settings | File Templates. */ public class PrefsActivity extends PreferenceActivity { public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.prefs); } }