服务未运行但正在创建

时间:2019-12-02 11:42:32

标签: android service background task

AndroidManifest

<service android:name="com.example.freewill.SensorService"
         android:enabled="true">
</service>

我的包裹名称是com.example.freecallv2。 当我尝试在清单中使用com.example.freecallv2时,我的应用程序未运行,一旦打开它便停止运行。

我在MainActivity中使用以下代码来启动服务,“ mSensorService”是我的服务类的对象,“ mServiceIntent”是将启动服务的Intent的对象:

mSensorService = new SensorService();
mServiceIntent = new Intent(this, mSensorService.getClass());
startService(mServiceIntent);

我的服务对象已创建,但执行后,我的Service类中'onStartCommand'中使用的代码未运行。

0 个答案:

没有答案