我希望服务在单击通知然后运行pendingIntent后执行stopForeground和stopSelf。
我尝试过使用一个从未调用的BroadcastReceiver,因为我在调试过程中检查过。我已将它添加到清单中。
Intent intentHide = new Intent(this, StopServiceReceiver.class);
PendingIntent hide = PendingIntent.getBroadcast(this, (int) System.currentTimeMillis(), intentHide, PendingIntent.FLAG_CANCEL_CURRENT);
将其添加到构建器
builder.setContentIntent(hide);
广播录制是单独完成的 -
public class StopServiceReceiver extends BroadcastReceiver {
public static final int REQUEST_CODE = 333;
@Override
public void onReceive(Context context, Intent intent) {
Intent service = new Intent(context, TimerService.class);
context.stopService(service);
}
}
清单 -
<receiver
android:name=".StopServiceReceiver"
android:enabled="true"
android:process=":remote" />
这不起作用。通知和服务都还活着。
问题 - 我应该使用addContent而不是setContentIntent吗?如果是,那么参数应该是什么? 我有什么问题吗?这种实施可能出现什么问题?谢谢。
答案 0 :(得分:0)
我在通知中遇到了同样的问题。
此代码运行正常。
void creatnotifiaction()
{
public static final String STOP = "com.example.android";
public static final int REQUEST_CODE = 333;
filter = new IntentFilter();
filter.addAction(STOP);
Intent intentHide = new Intent(STOP);
PendingIntent hide = PendingIntent.getBroadcast(this,REQUEST_CODE,intentHide,PendingIntent.FLAG_CANCEL_CURRENT);
registerReceiver(broadcastReceiver, filter);
}
无需在同一类中分离广播接收器。
BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
@SuppressLint("ResourceAsColor")
@Override
public void onReceive(Context context, Intent intent) {
final String action = intent.getAction();
Log.d("notification", "Received intent with action " + action);
switch (action) {
case STOP:
//your code to stop notifications or service.
break;
}
});
让我知道这项工作是否适合你。 谢谢......快乐的编码。