source: other-projects/tipple-android/tipple-lib/src/org/greenstone/android/tipple/base/EditPreferences.java@ 26899

Last change on this file since 26899 was 26899, checked in by davidb, 11 years ago

Tipple reborn after Chris's Summer of Code 2013

File size: 1.4 KB
Line 
1/*
2 *
3 * This program is free software: you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation, either version 3 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 *
16 * Based on file of the same name from mapsforge.org
17 *
18 */
19package org.greenstone.android.tipple.base;
20
21import org.greenstone.android.tipple.R;
22
23import android.os.Bundle;
24import android.preference.PreferenceActivity;
25
26/**
27 * Activity to edit the application preferences.
28 */
29public class EditPreferences extends PreferenceActivity
30{
31 @Override
32 protected void onCreate(Bundle savedInstanceState)
33 {
34 System.err.println("*** EditPreferences::onCreate()");
35 super.onCreate(savedInstanceState);
36 addPreferencesFromResource(R.xml.preferences);
37 }
38
39 @Override
40 protected void onResume()
41 {
42 System.err.println("*** EditPreferences::onResume()");
43 super.onResume();
44 }
45
46 @Override
47 protected void onStop()
48 {
49 System.err.println("*** EditPreferences::onStop()");
50 super.onResume();
51 }
52}
Note: See TracBrowser for help on using the repository browser.