Back to project page generalsbuzz.
The source code is released under:
MIT License
If you think the Android project generalsbuzz 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 me.kworden.wlcalendar2.fragment; /*from w ww . j av a2s . c o m*/ import me.kworden.wlcalendar2.R; import android.os.Bundle; import android.preference.PreferenceFragment; public class SettingsFragment extends PreferenceFragment { @Override public void onCreate(Bundle p_prev_state) { super.onCreate(p_prev_state); addPreferencesFromResource(R.xml.pref_general); } }