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
版权声明:本文标题:Android处理android.app.RemoteServiceException: Bad notification for startForeground: java.lang.Ru 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1732352690h1533535.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论