Back to project page SpartanTimeLapseRecorder.
The source code is released under:
GNU General Public License
If you think the Android project SpartanTimeLapseRecorder listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Spartan Time Lapse Recorder - Minimalistic android time lapse recording app * Copyright (C) 2014 Andreas Rohner//ww w . j a v a2 s. co m * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package at.andreasrohner.spartantimelapserec; import android.annotation.TargetApi; import android.content.Context; import android.os.Build; import android.os.Bundle; import android.preference.PreferenceFragment; import at.andreasrohner.spartantimelapserec.R; @TargetApi(Build.VERSION_CODES.HONEYCOMB) public class SettingsFragment extends PreferenceFragment { SettingsCommon settCommon; @Override public void onCreate(Bundle savedInstanceState) { Context context = getActivity().getApplicationContext(); super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.preferences); settCommon = new SettingsCommon(); settCommon.onCreate(context, getPreferenceScreen()); } @Override public void onResume() { super.onResume(); settCommon.onResume(getPreferenceScreen()); } @Override public void onPause() { super.onPause(); settCommon.onPause(getPreferenceScreen()); } }