How to force an IntentService to stop immediately with a cancel button from an Activity?

后端 未结 9 884
梦如初夏
梦如初夏 2020-11-30 00:10

I have an IntentService that is started from an Activity and I would like to be able to stop the service immediately from the activity with a \"cancel\" button in the activi

9条回答
  •  攒了一身酷
    2020-11-30 01:10

    Here is some sample code to start/stop Service

    To start,

    Intent GPSService = new Intent(context, TrackGPS.class);
    context.startService(GPSService);
    

    To stop,

    context.stopService(GPSService);

提交回复
热议问题