在Service中弹出Notification

时间:2022-11-01 15:36:54
我的Service类:
package test.service;

import test.activity.TestServiceActivity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.IBinder;

public class MyService extends Service {

    @Override
    public IBinder onBind(Intent arg0) {
        // TODO Auto-generated method stub
        return null;
    }

    @Override
    public void onCreate() {
        // TODO Auto-generated method stub
        super.onCreate();
    }

    @Override
    public void onDestroy() {
        // TODO Auto-generated method stub
        super.onDestroy();
    }

    @Override
    public void onStart(Intent intent, int startId) {
        // TODO Auto-generated method stub
        super.onStart(intent, startId);

        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager nm = (NotificationManager) getSystemService(ns);

        CharSequence tickerText = "Hello";
        long when = System.currentTimeMillis();

        Notification notification = new Notification(1, tickerText, when);
        
        PendingIntent pi = PendingIntent.getActivity(this, 0, new Intent(this,
                TestServiceActivity.class), 0);
        notification.setLatestEventInfo(this, "出勤提醒", "還有15分鐘就到上班時間", pi);

        nm.notify(1, notification);
    }

}


我的TestServiceActivity类:
package test.activity;

import test.service.MyService;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;

public class TestServiceActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

    public void start(View view) {
        Intent serviceIntent = new Intent(this, MyService.class);
        // serviceIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startService(serviceIntent);
    }

    public void stop(View view) {
        Intent serviceIntent = new Intent(this, MyService.class);
        // serviceIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        stopService(serviceIntent);
    }
}


mian.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <Button
        android:id="@+id/start"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="start"
        android:text="start service"
        android:textSize="20dip" />

    <Button
        android:id="@+id/stop"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="stop"
        android:text="stop service"
        android:textSize="20dip" />

</LinearLayout>

当我跑起项目,点击start service按钮,去触发onStart方法的时候,就报错了:
bad notification posted from package

请问是我的代码有问题吗?
其实我想做一个定时提醒用户上班的功能,想通过开机启动一个服务,然后通过AlarmManager去定时判断,到了设定的时间就弹出Notification提醒用户上班,我这样的思路有问题吗?
分数不多,请多过来帮帮忙,困扰了好几天了!

5 个解决方案

#1


Service无法弹出Notification,你可以在Service里发送个广播,在broadcast里接收广播并弹出Notification

#2


无人问津,最后还是自己搞定了

#3


楼主所以下怎么搞定的啊~~

#4


这个孩子写程序不仔细啊
看Log一眼就看出错误了
02-07 05:51:42.303: E/AndroidRuntime(655): FATAL EXCEPTION: main
02-07 05:51:42.303: E/AndroidRuntime(655): android.app.RemoteServiceException: Bad notification posted from package com.wzy.cn: Couldn't create icon: StatusBarIcon(pkg=com.wzy.cn id=0x1 level=0 visible=true num=0 )

换成这句就OK了
Notification notification = new Notification( R.drawable.ic_launcher, tickerText, when);

#5


在Service中弹出Notification

#1


Service无法弹出Notification,你可以在Service里发送个广播,在broadcast里接收广播并弹出Notification

#2


无人问津,最后还是自己搞定了

#3


楼主所以下怎么搞定的啊~~

#4


这个孩子写程序不仔细啊
看Log一眼就看出错误了
02-07 05:51:42.303: E/AndroidRuntime(655): FATAL EXCEPTION: main
02-07 05:51:42.303: E/AndroidRuntime(655): android.app.RemoteServiceException: Bad notification posted from package com.wzy.cn: Couldn't create icon: StatusBarIcon(pkg=com.wzy.cn id=0x1 level=0 visible=true num=0 )

换成这句就OK了
Notification notification = new Notification( R.drawable.ic_launcher, tickerText, when);

#5


在Service中弹出Notification

相关文章