0

我创建了一个简单的服务,现在我正在为此发出通知。我正在写一个通知类。编写完所有代码后,三行带有红色下划线,第一行getSystemService(ns);是第 14 行的这个函数,第二行是getApplicationContext();第 20 行的这个函数,第三行再次与第一个函数相同,但在第 31 行的cancelNotification()函数中。这是我的完整代码

package com.zafar.batterynotify;

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;

public class Notify {
    private static final int NOTIFICATION_ID = 1;

    public void initNotification() {
        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
        int icon = R.drawable.ic_launcher;
        CharSequence tickerText = "Service Started";
        long when = System.currentTimeMillis();
        Notification notification = new Notification(icon, tickerText, when);
        notification.flags = Notification.FLAG_ONGOING_EVENT;
        Context context = getApplicationContext();
        CharSequence contentTitle = "Ongoing service";
        CharSequence contentText = "This is service is ongoing";
        Intent notificationIntent = new Intent(context, BatteryNotify.class);
        PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
        notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
        mNotificationManager.notify(NOTIFICATION_ID, notification);
    }

    public void cancelNotification() {
        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
        mNotificationManager.cancel(NOTIFICATION_ID);
    }
}

编辑更新的代码

我的服务等级

package com.zafar.batterynotify;

import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;
import android.widget.Toast;

public class BatteryService extends Service {
Notify notification = new Notify();
String ns = Context.NOTIFICATION_SERVICE;
@Override
public IBinder onBind(Intent arg0) {
    // TODO Auto-generated method stub
    return null;
}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    notification.initNotification(Context.NOTIFICATION_SERVICE);
    Toast.makeText(this, "Service Started", Toast.LENGTH_LONG).show();
    return START_STICKY;
}

public void onDestroy() {
    super.onDestroy();
    notification.cancelNotification(Context.NOTIFICATION_SERVICE);
    Toast.makeText(this, "Service Stopped", Toast.LENGTH_LONG).show();
}

}

通知班级

package com.zafar.batterynotify;

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;

public class Notify {
private static final int NOTIFICATION_ID = 1;

public void initNotification(Context actContext) {
    //String ns = Context.NOTIFICATION_SERVICE;
    //Context context = actContext.getApplicationContext();
    NotificationManager mNotificationManager = actContext.getSystemService(ns);
    int icon = R.drawable.ic_launcher;
    CharSequence tickerText = "Service Started";
    long when = System.currentTimeMillis();
    Notification notification = new Notification(icon, tickerText, when);
    notification.flags = Notification.FLAG_ONGOING_EVENT;
    Context context = actContext.getApplicationContext();
    CharSequence contentTitle = "Ongoing service";
    CharSequence contentText = "This is service is ongoing";
    Intent notificationIntent = new Intent(context, BatteryNotify.class);
    PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
    notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
    mNotificationManager.notify(NOTIFICATION_ID, notification);
}

public void cancelNotification(Context actContext) {
    String ns = Context.NOTIFICATION_SERVICE;
    NotificationManager mNotificationManager = actContext.getSystemService(ns);
    mNotificationManager.cancel(NOTIFICATION_ID);
}
}
4

2 回答 2

0

将您的上下文从调用 Activity 或服务传递给您的类并使用它:

    public void initNotification(Context actContext) {
    //...
        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager mNotificationManager = actContext.getSystemService(ns);
    //...
    }

    public void cancelNotification(Context actContext) {
        //...
        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager mNotificationManager = actContext.getSystemService(ns);
        //...
    }
于 2012-05-12T08:38:46.600 回答
0

不要尝试使用getApplicationContext(),而是创建MyApplication从 继承的类Application,然后在该类中执行以下操作:

public class MyApplication extends Application {
    private static MyApplication instance;

    @Override
    public void onCreate() {
        super.onCreate();
        instance = this;
        .........
    }

    public static Context getContext() {
        return instance;
    }

之后,MyApplication.getContext()如果您需要上下文并且没有闲置,您可以在任何地方使用Activity

于 2012-05-12T08:45:38.107 回答