使用Action启动/关闭Service
生活随笔
收集整理的這篇文章主要介紹了
使用Action启动/关闭Service
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
前面有用使用Intent來控制? Service
使用的參數是Service的類
Service的啟動/關閉還有另外一種方式來控制
通過Intent傳入Action的參數
?
在manifest中注冊一個Service并且設置一個action
<service android:enabled="true" android:exported="false"android:name="com.services.sev.PlayService" ><intent-filter><action android:name="com.example.codetest_1.action.startPlayService" /></intent-filter></service>注意這個name的字符串
可以在Service類中增加一個字段
public static final String ACTION = "com.example.codetest_1.action.startPlayService";這樣 只需修改Intent的調用方法 就可以啟動/關閉Service了
Intent intent = new Intent();intent.setAction(PlayService.ACTION);this.startService(intent); Intent intent = new Intent();intent.setAction(PlayService.ACTION);this.stopService(intent);?
轉載于:https://www.cnblogs.com/chenlong-50954265/p/5394248.html
總結
以上是生活随笔為你收集整理的使用Action启动/关闭Service的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 阿里云产品搭建web应用梳理
- 下一篇: 模拟video播放器