Back to project page Timetable.
The source code is released under:
GNU General Public 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 com.timetable.android.activities; //from w w w . j ava2s. c om import org.holoeverywhere.preference.PreferenceActivity; import android.os.Bundle; import com.timetable.android.R; /* * Activity, that provides interface for changing application settings. * User can choose alarm sound. */ public class SettingsActivity extends PreferenceActivity { public static final String ALARM_SOUND_KEY = "pref_alarm_tone"; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.preferences); } }