android 从activity中停止Service

1,在AndroidManifest.xml注册Service

       
           
               
           

       

2,在Activity中调用

                final Intent intent = new Intent();
                intent.setAction("ITOP.MOBILE.SIMPLE.SERVICE.SENSORSERVICE");
                stopService(intent);

你可能感兴趣的:(Android开发)