blob: cb77118fc0c62827555873ed2dd2ef6af35b204f [file] [log] [blame]
Mike Lockwoodc9d3be32010-02-22 23:42:02 -05001/*
Mike Lockwood8ab8b412010-02-24 12:59:14 -05002 * Copyright (C) 2008 The Android Open Source Project
Mike Lockwoodc9d3be32010-02-22 23:42:02 -05003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Mike Lockwood191d8982010-02-23 07:50:18 -050017package com.android.locationtracker;
Mike Lockwoodc9d3be32010-02-22 23:42:02 -050018
19import android.os.Bundle;
20import android.preference.PreferenceActivity;
21
22/**
23 * Settings preference screen for location tracker
24 */
25public class SettingsActivity extends PreferenceActivity {
26
27 @Override
28 protected void onCreate(Bundle savedInstanceState) {
29 super.onCreate(savedInstanceState);
30
31 // Load the preferences from an XML resource
32 addPreferencesFromResource(R.xml.preferences);
33 }
34
35}