我有兩個服務: 數據提供者和接收者。將數據從服務傳遞到另一個服務
我試着做這樣:
提供商:
Intent i1 = new Intent(feasibilityEngine.this, SOSFeeder.class);
i1.putExtra(SENSOR_STRING, "f[i]");
startService(i1);
接收機
Intent intent = getIntent();
Bundle b = new Bundle();
int i = b.getInt(SENSRO_STRING);
,但我不能使用getIntent()。
有人可以幫助我嗎? TNKS