0
私のラジオストリーミングアプリでは、プレイしないようにしたいです。プレイヤーを停止または殺すための通知ボタン
通知にボタンを追加してプレーヤーを停止または強制終了するにはどうすればよいですか?
私はこれまでのところ、これを持っている:
private void initNotification() {
NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
PendingIntent intent = PendingIntent.getActivity(StreamService.this, 0, new Intent(this, Radio.class), 0);
builder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_ricky)
.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.drawable.icon))
.setContentTitle("Radio")
builder.setContentIntent(intent);
builder.setOngoing(true);
notificationManager.notify(NOTIFICATION_ID, builder.build());
}