标签: android android-service
我在想是否一个Android服务可以与其他应用程序交互,而不是同一个应用程序的活动。那可能吗?如果是,那么如何允许从其他应用程序访问服务?
答案 0 :(得分:2)
首先使用<intent-filter>字符串为<service>设置<action>。
<intent-filter>
<service>
<action>
然后将该操作字符串用于与bindService()一起使用的Intent(例如new Intent("this.is.my.custom.ACTION"))
new Intent("this.is.my.custom.ACTION")
示例here。