我创建了一个启动服务的插件,这个工作正常。但是我希望能够从插件向运行的服务发送变量,并从服务中获取变量。我已经研究了广播/接收器和绑定,但是无法使用我在下面使用的代码结构的任何示例。有人有任何提示吗?我是Android开发新手,对Java很新(但不是编程),所以我还没有完成一个概念上的飞跃。
的插件
public class IOIOconnect extends CordovaPlugin {
private Context thiscontext;
private Intent ioioService;
// Handle calls from Javascript
@Override
public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {
// Call from javascript to startup the IOIO service
if (action.equals("ioioStartup")) {
this.ioioStartup(callbackContext);
return true;
}
}
// Initialise IOIO service (Called from Javascript)
private void ioioStartup(CallbackContext callbackContext) {
// Initialise the service variables and start it it up
thiscontext = this.cordova.getActivity().getApplicationContext();
ioioService = new Intent(thiscontext, HelloIOIOService.class);
ioioService.putExtra("loadinterval", 800); // Set LED flash interval
thiscontext.startService(ioioService);
}
}
服务
public class HelloIOIOService extends IOIOService {
private int interval = 100;
@Override
public IBinder onBind(Intent intent) {
return null;
}
// USUAL IOIO SERVICE STUFF
@Override
public void onStart(Intent intent, int startId) {
// Service has been started
super.onStart(intent, startId);
// IOIO When service is started load external vars (if set)
int loadinterval = intent.getIntExtra("loadinterval", -1);
if(loadinterval>=0){ interval = loadinterval; }
// Native IOIO stuff
NotificationManager nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
if (intent != null && intent.getAction() != null && intent.getAction().equals("stop")) {
// User clicked the notification. Need to stop the service.
nm.cancel(0);
stopSelf();
} else {
// Service starting. Create a notification.
Notification notification = new Notification(
R.drawable.ic_launcher, "IOIO service running",
System.currentTimeMillis());
notification
.setLatestEventInfo(this, "IOIO Service", "Click to stop",
PendingIntent.getService(this, 0, new Intent(
"stop", null, this, this.getClass()), 0));
notification.flags |= Notification.FLAG_ONGOING_EVENT;
nm.notify(0, notification);
}
}
}
答案 0 :(得分:1)
我遇到了同样的问题:为Salesforce Mobile SDK编写插件(基于Cordova 2.3.0)。
我的情况:插件和应用程序是不同的Android项目。
解决方案是,您必须在主(app)项目的Service
中发布AndroidManifest.xml
。请记住使用完全限定路径和导出进行签名,如下所示:
<service
android:name="full.qualified.path.to.Service"
android:exported="true">
</service>
答案 1 :(得分:0)
我设法创建了一个在这个项目中使用的工作插件: https://github.com/opensystemsassociation/southendtransportresearch/tree/master/phonegap
代码还没有整洁,因为它仍处于开发阶段,但“hacky”方法运行正常,所以希望它能帮助一线人