要创建广播接收器,我需要获取上下文,但是绑定服务中没有上下文。我在内部创建了带有广播接收器的新类,并在清单-
中以静态方式对其进行了描述<receiver android:name=".SingBroadcastReceiver" android:exported="true">
<intent-filter>
<action android:name="android.intent.action,ACTION_FOUND"/>
</intent-filter>
</receiver>
但是同样,接收者需要上下文...即使在接收广播请求中,我也不确定。那么,请问有人知道如何为绑定服务内部的ACTION_FOUND(startdiscovery)创建接收器吗?