MediaLibraryService を使用してコンテンツを提供する

多くの場合、メディアアプリには、階層構造に編成されたメディア アイテムのコレクションが含まれています。 たとえば、アルバムの曲やプレイリストのテレビ番組のエピソードなどです。この階層の メディアアイテムはメディアライブラリと呼ばれます

<ph type="x-smartling-placeholder">
</ph> 階層構造で配置されたメディア コンテンツの例
図 1: できます。

MediaLibraryService は、標準化された API を使用して、Google Cloud で ダウンロードしますこれは、たとえば、Google Cloud の Android Auto をメディアアプリに接続できます。これにより、 ドライバセーフ UI を作成します。

MediaLibraryService を作成する

MediaLibraryService の実装は次のようになります。 MediaSessionService の実装 例外として onGetSession() メソッドでは、 MediaSession ではなく MediaLibrarySession を返します。

Kotlin

class PlaybackService : MediaLibraryService() {
  var mediaLibrarySession: MediaLibrarySession? = null
  var callback: MediaLibrarySession.Callback = object : MediaLibrarySession.Callback {...}

  // If desired, validate the controller before returning the media library session
  override fun onGetSession(controllerInfo: MediaSession.ControllerInfo): MediaLibrarySession? =
    mediaLibrarySession

  // Create your player and media library session in the onCreate lifecycle event
  override fun onCreate() {
    super.onCreate()
    val player = ExoPlayer.Builder(this).build()
    mediaLibrarySession = MediaLibrarySession.Builder(this, player, callback).build()
  }

  // Remember to release the player and media library session in onDestroy
  override fun onDestroy() {
    mediaLibrarySession?.run { 
      player.release()
      release()
      mediaLibrarySession = null
    }
    super.onDestroy()
  }
}

Java

class PlaybackService extends MediaLibraryService {
  MediaLibrarySession mediaLibrarySession = null;
  MediaLibrarySession.Callback callback = new MediaLibrarySession.Callback() {...};

  @Override
  public MediaLibrarySession onGetSession(MediaSession.ControllerInfo controllerInfo) {
    // If desired, validate the controller before returning the media library session
    return mediaLibrarySession;
  }

  // Create your player and media library session in the onCreate lifecycle event
  @Override
  public void onCreate() {
    super.onCreate();
    ExoPlayer player = new ExoPlayer.Builder(this).build();
    mediaLibrarySession = new MediaLibrarySession.Builder(this, player, callback).build();
  }

  // Remember to release the player and media library session in onDestroy
  @Override
  public void onDestroy() {
    if (mediaLibrarySession != null) {
      mediaLibrarySession.getPlayer().release();
      mediaLibrarySession.release();
      mediaLibrarySession = null;
    }
    super.onDestroy();
  }
}

マニフェスト ファイルで Service と必要な権限を必ず宣言してください。 さらに:

<service
    android:name=".PlaybackService"
    android:foregroundServiceType="mediaPlayback"
    android:exported="true">
    <intent-filter>
        <action android:name="androidx.media3.session.MediaSessionService"/>
    </intent-filter>
</service>

<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<!-- For targetSdk 34+ -->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK" />

MediaLibrarySession を使用する

MediaLibraryService API では、メディア ライブラリが 1 つのルートノードと子ノードを持つことができます。 再生可能 またはブラウジングできます。

MediaLibrarySession MediaSession API を拡張してコンテンツ ブラウジング API を追加します。従来の MediaSession コールバックMediaLibrarySession コールバック 次のようなメソッドを追加します。

  • onGetLibraryRoot() クライアントがコンテンツ ツリーのルート MediaItem をリクエストしたとき
  • onGetChildren() クライアントがコンテンツ ツリー内の MediaItem の子をリクエストしたとき
  • onGetSearchResult() クライアントが特定の 検索語句

関連するコールバック メソッドには、LibraryParams が含まれます。 クライアント アプリが作成するコンテンツ ツリーのタイプに関する追加のシグナルを含む、 選択することもできます