我的 android MainActivity.java 类中有以下(简化的)代码
case R.id.menu_stop:
stopPlaying();
return true;
stopPlaying()
在 Jelly Bean 通知中按下操作按钮时,如何使用意图调用,?通知是在我的 StreamingService.java 类中构建的。我可以使用触发电子邮件、电话和 SMS 意图的操作按钮,我只是不知道如何在我的代码中调用方法。
我在 stopPlaying() 方法中的代码如下
private void stopPlaying() {
Intent intent = new Intent(this, StreamingService.class);
stopService(intent);
}