изображение кнопки воспроизведения / паузы в уведомлении, Android

#android #notifications #media-player #android-remoteview

#Android #уведомления #медиаплеер #android-удаленный просмотр

Вопрос:

Я реализовал музыкальный проигрыватель, который запускает пользовательское уведомление при воспроизведении потокового аудио.

Все работает, и я могу воспроизводить / приостанавливать звук с помощью кнопки в уведомлении. Единственная проблема — это кнопка изображения: она не может изменить изображение одним нажатием кнопки, чтобы указать воспроизведение / паузу.

Использование RemoteViews.setImageViewResource() в RemoteReceiver не работает. Управление осуществляется с помощью BroadcastReceiver, и это код запуска уведомления от активности проигрывателя:

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

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

      RemoteViews notificationView = new RemoteViews(getPackageName(), R.layout.notification_view);
      notificationView.setImageViewResource(R.id.button1, R.drawable.pause);
      notificationView.setTextViewText(R.id.textView1, songName);

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

      notification.contentView = notificationView;
      notification.contentIntent = pendingNotificationIntent;     

      Intent switchIntent = new Intent("com.example.test.ACTION_PLAY");
      PendingIntent pendingSwitchIntent = PendingIntent.getBroadcast(this, 0, switchIntent, PendingIntent.FLAG_UPDATE_CURRENT);

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

The notification.xml содержание — это

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">


    <ImageView
        android:layout_alignParentLeft="true"
        android:layout_width="60dp"
        android:layout_height="60dp"
        android:src="@drawable/ic_launcher"
        android:id="@ id/imgAppIc" />



    <TextView
        android:layout_toRightOf="@id/imgAppIc"
        android:singleLine="true"
        android:id="@ id/textView1"
        android:ellipsize="marquee"
        android:layout_marginLeft="7dp"
        android:layout_marginTop="10dp"
        android:marqueeRepeatLimit ="marquee_forever"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:scrollHorizontally="true"
        android:layout_width="170dp"
        android:layout_height="wrap_content"/>


    <ImageButton
        android:id="@ id/play_pause"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toLeftOf="@ id/play"

         />

</RelativeLayout>
 

это класс RemoteRecivier

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

        RemoteViews remoteViews = new RemoteViews(context.getPackageName(),
                R.layout.notification_view);    

        if(action.equalsIgnoreCase("com.example.test.ACTION_PLAY")){
            if(mediaplayer.isPlaying()){
                mediaplayer.pause();

                remoteViews.setImageViewResource(R.id.button1, R.drawable.play);
            }
            else {
                mediaplayer.start();
                remoteViews.setImageViewResource(R.id.button1, R.drawable.pause);
            }
        }
    }
}
 

и, наконец, манифест

  <receiver android:name=".RemoteControlReceiver">
            <intent-filter>
                <action android:name="com.Music.app.ACTION_PLAY" />
            </intent-filter>


        </receiver>

<activity android:name="PlayerActivity" />
 

Ответ №1:

Вы должны установить для своего notification.contentView новый RemoteView после его изменения, чтобы он мог обновлять сам вид уведомлений.

Это означает, что после получения действия в вашем BroadcastReceiver заново создайте свое уведомление с отображением желаемой кнопки (пауза или воспроизведение)

Надеюсь, это поможет

Комментарии:

1. При этом уведомление не будет мигать?

2. Twinkle не могли бы вы опубликовать ответ (с кодом) здесь? Пожалуйста, мы пытаемся сделать это в течение нескольких дней.. После установки notification.contentView = new RemoteView() Кнопка уведомления по-прежнему не работает.

3. @OmkarJadhav это сработало, как сказал АлАсири. после внесения изменений и изменения изображения кнопки повторно уведомите NotificationManager.notify (1, уведомление); это покажет обновление. и убедитесь, что вы используете тот же идентификатор, который здесь указан под номером 1.. надеюсь, вы получите это сейчас и скажете мне, нужна ли вам помощь

4. Но не будет ли это новым уведомлением?

5. @suku использует тот же идентификатор, чтобы избежать этой проблемы

Ответ №2:

Это должно сработать. Просто создайте свою notification и notificationManager статическую глобальную переменную.

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

        if(action.equalsIgnoreCase("com.example.test.ACTION_PLAY")){
            if(mediaplayer.isPlaying()){
                mediaplayer.pause();
                notificationView.setImageViewResource(R.id.button1, R.drawable.play);
                notification.contentView = notificationView;
                notificationManager.notify(1, notification);
            }
            else {
                mediaplayer.start();
                notificationView.setImageViewResource(R.id.button1, R.drawable.pause);
                notification.contentView = notificationView;
                notificationManager.notify(1, notification);
            }
        }
    }
}
 

Комментарии:

1. Здесь что-то странное. у меня такой же штат, но не работает. Как вы можете получить доступ к notificationView таким образом? Service1.mNotificationManager.notify(1, Service1.mBuilder.build()); эта строка делает приложение взломанным…

Ответ №3:

Эй, ребята, вам нужно только обновить «NotificationManager.notify (1, notification);» в вашем методе onReceiver после внесения изменений в то же уведомление. Назначьте общедоступную статику для вашего уведомления и NotificationManager и используйте в своем расширенном классе BroadcastReceiver.

Смотрите приведенный ниже код, чтобы точно знать :

 
 public void onReceive(Context context, Intent intent) {


    String action1 = intent.getStringExtra("action1");
       // String action2 = intent.getStringExtra("action2");

        Log.i("Intent Received","Yes");


    if(say)
    {
        if (action1.equals("PauseAction"))
        {
            performAction1();
            say = false;

        }
    }

    else if(!say)
    {

        if (action1.equals("PauseAction"))
        {
            performAction2();
            say = true;


        }
    }

   public void performAction1()
    {

   if (mediaPlayer!=null)
 {

     if(mediaPlayer.isPlaying())
        {
            playButtonImage.setImageResource(R.drawable.playbutton);
            playButtonImage.setContentDescription("Play Button ");


 notificationView.setImageViewResource(R.id.remoteViewImageView,R.drawable.playbutton);
            mediaPlayer.pause();
            play = true;

            MainActivity.notificationManager.notify(1, notification);


        }

        Log.i("performAction1 called ","Yes");

    }
  }


    public void performAction2()
    {

        if (mediaPlayer != null)
        {
            mediaPlayer.start();
            playButtonImage.setImageResource(R.drawable.pause);
            playButtonImage.setContentDescription("Pause Button");
            notificationView.setImageViewResource(R.id.remoteViewImageView,R.drawable.pause);
            MainActivity.notificationManager.notify(1, notification);

            play = false;

            Log.i("performAction2 called ", "Yes");
        }
    }
}

 

Ответ №4:

Почему бы не использовать ImageView вместо ImageButton? С помощью ImageView вы можете просто изменить его внешний вид с помощью removeViews.setImageViewResource(R.id.button1, R.drawable.pause);

Комментарии:

1. Это не приходит мне в голову .. я никогда не пробовал этого раньше, может быть, в следующий раз.

2. @Jason Не имеет значения, является ли это Imageview или ImageButton. setImageViewResource() выполняет ту же работу для них обоих.