有时候离开应用就会接收不到系统的广播是因为系统默认发送的广播都会有一个参数ntent startIntent = new Intent();startIntent.putExtra("pkg", getPackageName());startIntent.setAction("com.lenovo....
分类:
其他好文 时间:
2015-09-19 22:24:30
阅读次数:
207
启动和停止Service:Intent startIntent = new Intent(this, MyService.class);startService(startIntent); // 启动服务Intent stopIntent = new Intent(this, MyService.c...
分类:
其他好文 时间:
2015-02-02 22:42:26
阅读次数:
130
判断intent-filter的特定的action本文地址:http://blog.csdn.net/caroline_wendy如果使用startIntent()启动Activity时,如果intent-filter中未包含此action,则会异常崩溃;在使用时,可以先进行检查: // 判断是否安装【健康工具】
private boolean isInstallChunyuTool...
分类:
移动开发 时间:
2015-01-13 10:39:19
阅读次数:
140
创建一个公共服务类后有两种使用方式,第一种将公共服务放到自己的项目中运行,这样外界无法访问和控制这个公共服务类,这个服务的所有变量、函数都在自己的项目中运行,可以直接通过startIntent(Service)重复调用此服务。
第二种是将公共服务配置到自己项目的xml文件中,并设置process=":remoteXXX"属性,此后将不能直接通过startIntent(Service)重复调用此服...
分类:
移动开发 时间:
2014-12-17 16:29:00
阅读次数:
204
Android中的Service有两种启动方式1,startSverice2,bindService这两种启动Service的方式略有不同。首先看startServiceIntent startIntent = new Intent(MainActivity.this,MyService.class...
分类:
移动开发 时间:
2014-08-24 23:41:23
阅读次数:
268