blob: b9e60398f283712cc9a28de3c0a18ff50cebd1d8 [file] [log] [blame]
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.cellbroadcastreceiver;
import android.app.Application;
import android.telephony.CellBroadcastMessage;
import android.util.Log;
import android.preference.PreferenceManager;
import java.util.ArrayList;
import java.util.concurrent.atomic.AtomicInteger;
/**
* The application class loads the default preferences at first start,
* and remembers the time of the most recently received broadcast.
*/
public class CellBroadcastReceiverApp extends Application {
private static final String TAG = "CellBroadcastReceiverApp";
@Override
public void onCreate() {
super.onCreate();
// TODO: fix strict mode violation from the following method call during app creation
PreferenceManager.setDefaultValues(this, R.xml.preferences, false);
}
/** List of unread non-emergency alerts to show when user selects the notification. */
private static final ArrayList<CellBroadcastMessage> sNewMessageList =
new ArrayList<CellBroadcastMessage>(4);
/** Latest area info cell broadcast received. */
private static CellBroadcastMessage sLatestAreaInfo;
/** Adds a new unread non-emergency message and returns the current list. */
static ArrayList<CellBroadcastMessage> addNewMessageToList(CellBroadcastMessage message) {
sNewMessageList.add(message);
return sNewMessageList;
}
/** Clears the list of unread non-emergency messages. */
static void clearNewMessageList() {
sNewMessageList.clear();
}
/** Saves the latest area info broadcast received. */
static void setLatestAreaInfo(CellBroadcastMessage areaInfo) {
sLatestAreaInfo = areaInfo;
}
/** Returns the latest area info broadcast received. */
static CellBroadcastMessage getLatestAreaInfo() {
return sLatestAreaInfo;
}
}