我有一个广播接收器类,当我收到特定广播时,我想停止前台通知。所以我尝试context.stopForeground()
了,但智能感知没有显示该方法。我们如何调用stopForeground()
广播接收器类中的方法?
public class Broad extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if(intent.getAction()==Const.ACTION_STOP)
{
// unable to call like this
context.stopForeground();
}
}
}