我正在将onNotificationPosted
方法与NotificationListenerService
一起使用,但是如果我关闭程序方法,该类将停止工作。需要执行什么操作才能使程序即使关闭程序也可以处理通知。
public class NotificationService extends NotificationListenerService {
@Override
public IBinder onBind(Intent intent) {
return super.onBind(intent);
}
@Override
public void onCreate(){
super.onCreate();
Log.d("onCreate", "Inside on create");
}
@Override
public void onNotificationPosted (StatusBarNotification sbn){
}