com.android.mms.ui.SmsStorageMonitor.java Source code

Java tutorial

Introduction

Here is the source code for com.android.mms.ui.SmsStorageMonitor.java

Source

/*
 * Copyright (C) 2013 Roger Chen <cxr514033970@gmail.com>
 *
 * 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.mms.ui;

import android.app.NotificationManager;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.support.v4.app.NotificationCompat;

import com.android.mms.R;

public class SmsStorageMonitor extends BroadcastReceiver {
    private Context mContext;
    private final int NOTIFICATION_STORAGE_LIMITED_ID = -1;
    private static NotificationManager mNotificationManager;

    public static final String ACTION_DEVICE_STORAGE_FULL = "android.intent.action.DEVICE_STORAGE_FULL";
    public static final String ACTION_DEVICE_STORAGE_NOT_FULL = "android.intent.action.DEVICE_STORAGE_NOT_FULL";

    @Override
    public void onReceive(Context context, Intent intent) {
        mContext = context;
        if (mNotificationManager == null) {
            mNotificationManager = (NotificationManager) mContext.getSystemService(Context.NOTIFICATION_SERVICE);
        }
        if (intent.getAction().equals(ACTION_DEVICE_STORAGE_FULL)) {
            notifyReachStorageLimited();
        } else if (intent.getAction().equals(ACTION_DEVICE_STORAGE_NOT_FULL)) {
            cancelStorageLimitedWarning();
        }
    }

    private void notifyReachStorageLimited() {
        NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(mContext)
                .setSmallIcon(R.mipmap.ic_launcher_smsmms)
                .setContentTitle(mContext.getString(R.string.storage_warning_title))
                .setContentText(mContext.getString(R.string.storage_warning_content)).setOngoing(true);
        mNotificationManager.notify(NOTIFICATION_STORAGE_LIMITED_ID, mBuilder.build());
    }

    private void cancelStorageLimitedWarning() {
        mNotificationManager.cancel(NOTIFICATION_STORAGE_LIMITED_ID);
    }
}