Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b4e519ca authored by Kyunglyul Hyun's avatar Kyunglyul Hyun
Browse files

Revert^2 "Change PlaybackState#isActiveState to isActive"

This reverts d077dbf4
because the issue was resolved.

Bug: 161331016
Test: m lint-check
Change-Id: Ic4a2025407caeb6d41db3b84a293dc249f77ad0b
parent ac6f5ee9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -25218,6 +25218,7 @@ package android.media.session {
    method public float getPlaybackSpeed();
    method public long getPosition();
    method public int getState();
    method public boolean isActive();
    method public void writeToParcel(android.os.Parcel, int);
    field public static final long ACTION_FAST_FORWARD = 64L; // 0x40L
    field public static final long ACTION_PAUSE = 2L; // 0x2L
+0 −4
Original line number Diff line number Diff line
@@ -161,10 +161,6 @@ package android.media.session {
    method public void onVolumeChanged(@NonNull android.media.session.MediaSession.Token, int);
  }

  public final class PlaybackState implements android.os.Parcelable {
    method public boolean isActiveState();
  }

}

package android.net {
+5 −1
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ import static android.app.PendingIntent.FLAG_UPDATE_CURRENT;

import android.annotation.DrawableRes;
import android.annotation.StringRes;
import android.annotation.SuppressLint;
import android.app.PendingIntent;
import android.app.RemoteAction;
import android.content.BroadcastReceiver;
@@ -210,13 +211,16 @@ public class PipMediaController {
    /**
     * Gets the set of media actions currently available.
     */
    // This is due to using PlaybackState#isActive, which is added in API 31.
    // It can be removed when min_sdk of the app is set to 31 or greater.
    @SuppressLint("NewApi")
    private List<RemoteAction> getMediaActions() {
        if (mMediaController == null || mMediaController.getPlaybackState() == null) {
            return Collections.emptyList();
        }

        ArrayList<RemoteAction> mediaActions = new ArrayList<>();
        boolean isPlaying = mMediaController.getPlaybackState().isActiveState();
        boolean isPlaying = mMediaController.getPlaybackState().isActive();
        long actions = mMediaController.getPlaybackState().getActions();

        // Prev action
+14 −4
Original line number Diff line number Diff line
@@ -19,7 +19,6 @@ import android.annotation.DrawableRes;
import android.annotation.IntDef;
import android.annotation.LongDef;
import android.annotation.Nullable;
import android.annotation.SystemApi;
import android.os.Bundle;
import android.os.Parcel;
import android.os.Parcelable;
@@ -493,15 +492,26 @@ public final class PlaybackState implements Parcelable {

    /**
     * Returns whether this is considered as an active playback state.
     * @hide
     * <p>
     * The playback state is considered as an active if the state is one of the following:
     * <ul>
     * <li>{@link #STATE_BUFFERING}</li>
     * <li>{@link #STATE_CONNECTING}</li>
     * <li>{@link #STATE_FAST_FORWARDING}</li>
     * <li>{@link #STATE_PLAYING}</li>
     * <li>{@link #STATE_REWINDING}</li>
     * <li>{@link #STATE_SKIPPING_TO_NEXT}</li>
     * <li>{@link #STATE_SKIPPING_TO_PREVIOUS}</li>
     * <li>{@link #STATE_SKIPPING_TO_QUEUE_ITEM}</li>
     * </ul>
     */
    @SystemApi(client = SystemApi.Client.MODULE_LIBRARIES)
    public boolean isActiveState() {
    public boolean isActive() {
        switch (mState) {
            case PlaybackState.STATE_FAST_FORWARDING:
            case PlaybackState.STATE_REWINDING:
            case PlaybackState.STATE_SKIPPING_TO_PREVIOUS:
            case PlaybackState.STATE_SKIPPING_TO_NEXT:
            case PlaybackState.STATE_SKIPPING_TO_QUEUE_ITEM:
            case PlaybackState.STATE_BUFFERING:
            case PlaybackState.STATE_CONNECTING:
            case PlaybackState.STATE_PLAYING:
+1 −1
Original line number Diff line number Diff line
@@ -384,7 +384,7 @@ public class MediaSessionRecord implements IBinder.DeathRecipient, MediaSessionR
        if (mPlaybackState == null) {
            return false;
        }
        return mPlaybackState.isActiveState() == expected;
        return mPlaybackState.isActive() == expected;
    }

    /**