admin 管理员组

文章数量: 887006

Android 处理 android.app.RemoteServiceException: Bad notification for startForeground: java.lang.Ru

在做第一行代码的10.5.1节中会出现如下的报错


书上的源码如下
先在MainActivity中定义一个按钮,按钮中的点击事件如下

@Overridepublic void onClick(View v) {//启动服务时实际上是一个跳转switch (v.getId()) {case R.id.button1:Intent startIntent = new Intent(this,MyService.class);//startService(startIntent);  //启动服务bindService(startIntent,connection,BIND_AUTO_CREATE);   //绑定服务break;case R.id.button2://Intent stopIntent = new Intent(this,MyService.class);//stopService(stopIntent);   //停止服务unbindService(connection);break;}}

在MyService中onCreate的码如下

 @Overridepublic void onCreate() 

本文标签: Android处理androidappRemoteServiceException Bad notification for startForeground javalangRu