/* * 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; import java.util.HashMap; import java.util.Map; /** * 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 sNewMessageList = new ArrayList(4); /** Latest area info cell broadcast received. */ private static Map sLatestAreaInfo = new HashMap(); /** Adds a new unread non-emergency message and returns the current list. */ static ArrayList 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.put(areaInfo.getSubId(), areaInfo); } /** Returns the latest area info broadcast received. */ static CellBroadcastMessage getLatestAreaInfo(int subId ) { return sLatestAreaInfo.get(subId); } }