web-dev-qa-db-ja.com

通知での音楽プレーヤーの制御

androidの再生/一時停止、次および前のボタンで通知を設定する方法。

私はAndroidとスタックオーバーフローでも新しいので、ご容赦ください。

enter image description here

次のように曲の再生が開始されたときに通知を設定します。

`

@SuppressLint("NewApi")
public void setNotification(String songName){
    String ns = Context.NOTIFICATION_SERVICE;
    NotificationManager notificationManager = (NotificationManager) getSystemService(ns);


    @SuppressWarnings("deprecation")
    Notification notification = new Notification(R.drawable.god_img, null, System.currentTimeMillis());

    RemoteViews notificationView = new RemoteViews(getPackageName(), R.layout.notification_mediacontroller);

    //the intent that is started when the notification is clicked (works)
    Intent notificationIntent = new Intent(this, AudioBookListActivity.class);
    PendingIntent pendingNotificationIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);

    notification.contentView = notificationView;
    notification.contentIntent = pendingNotificationIntent;
    notification.flags |= Notification.FLAG_NO_CLEAR;

    //this is the intent that is supposed to be called when the button is clicked
    Intent switchIntent = new Intent(this, AudioPlayerBroadcastReceiver.class);
    PendingIntent pendingSwitchIntent = PendingIntent.getBroadcast(this, 0, switchIntent, 0);

    notificationView.setOnClickPendingIntent(R.id.btn_play_pause_in_notification, pendingSwitchIntent);
    notificationManager.notify(1, notification);        
}

`

以下のようなBroadcastReceiverを作成しました: `

   private class AudioPlayerBroadcastReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        System.out.println("intent action = " + action);
        long id = intent.getLongExtra("id", -1);

        if(Constant.PLAY_ALBUM.equals(action)) {
            //playAlbum(id);
        } else if(Constant.QUEUE_ALBUM.equals(action)) {
            //queueAlbum(id);
        } else if(Constant.PLAY_TRACK.equals(action)) {
            //playTrack(id);
        } else if(Constant.QUEUE_TRACK.equals(action)) {
            //queueTrack(id);
        } else if(Constant.PLAY_PAUSE_TRACK.equals(action)) {
 //                playPauseTrack();
            System.out.println("press play");
        } else if(Constant.HIDE_PLAYER.equals(action)) {
 //                hideNotification();
            System.out.println("press next");
        }
        else {
        }
    }

}`

今、私はカスタム通知を正常に設定しましたが、通知ボタンと、再生/一時停止、前と次などのイベントをどのように処理できますか?ブロードキャストレシーバーを使用しようとしましたが、応答がありませんでした。

専門家からの解決策とガイダンスを求めて、私を助けてください。

前もって感謝します。

28
Dhaval Travadi

AudioPlayerBroadcastReceiverコンポーネントクラスではなく、custom intent actionを設定する必要があります。

このようなカスタムアクション名でインテントを作成します

  Intent switchIntent = new Intent("com.example.app.ACTION_PLAY");

次に、PendingIntentBroadcastレシーバーを登録します

  PendingIntent pendingSwitchIntent = PendingIntent.getBroadcast(this, 100, switchIntent, 0);

次に、再生コントロールにonClickを設定し、必要に応じて他のコントロールに対して同様のカスタムアクションを実行します。

  notificationView.setOnClickPendingIntent(R.id.btn_play_pause_in_notification, pendingSwitchIntent);

次に、このようなAudioPlayerBroadcastReceiverにカスタムアクションを登録します

   <receiver Android:name="com.example.app.AudioPlayerBroadcastReceiver" >
        <intent-filter>
            <action Android:name="com.example.app.ACTION_PLAY" />
        </intent-filter>
    </receiver>

最後に、NotificationRemoteViewsレイアウトでプレイをクリックすると、BroadcastReceiverによってplay actionを受け取ります

public class AudioPlayerBroadcastReceiver extends BroadcastReceiver{
@Override
public void onReceive(Context context, Intent intent) {

    String action = intent.getAction();

    if(action.equalsIgnoreCase("com.example.app.ACTION_PLAY")){
        // do your stuff to play action;
    }
   }
}

編集:コードで登録されたブロードキャストレシーバーのインテントフィルターの設定方法

登録済みのCustom ActionのコードからIntent filterを介してBroadcast receiverを設定することもできます

    // instance of custom broadcast receiver
    CustomReceiver broadcastReceiver = new CustomReceiver();

    IntentFilter intentFilter = new IntentFilter();
    intentFilter.addCategory(Intent.CATEGORY_DEFAULT);
    // set the custom action
    intentFilter.addAction("com.example.app.ACTION_PLAY");
    // register the receiver
    registerReceiver(broadcastReceiver, intentFilter); 
34
Libin