Android용 IMA SDK를 사용하면
합니다. 이
setContinuousPlayback()
메서드가 플레이어가 콘텐츠 동영상을 계속 재생할 것인지 여부를 SDK에 알립니다.
연이어 반복됩니다. true로 설정하면
요청은 연속재생에 적합하다고 광고 서버에서 지정한 요청이어야 합니다. 비
이 메서드를 호출할 때
설정을 알 수 없는 상태로 둡니다
다음 샘플은 광고 요청에서 연속 재생을 설정하는 방법을 보여줍니다.
Android용 IMA SDK에서는 플레이어의 재생 시작 여부도 설정할 수 있습니다.
사용자 액션이 재생을 시작할 때까지
기다릴 수 있습니다 이 작업은
setAdWillAutoPlay()
메서드를 사용하여 축소하도록 요청합니다. true로 설정하면 광고에서 지정한 광고가 반환됩니다.
서버를 선택해야 합니다.
이 표에는 동영상 콘텐츠를 기준으로 연속 재생 및 자동재생을 위한 광고를 요청해야 하는 상황이 자세히 설명되어 있습니다.
광고가 쌍을 이루고 있습니다.
[null,null,["최종 업데이트: 2025-08-01(UTC)"],[[["\u003cp\u003eThe IMA SDK for Android allows you to specify whether your content videos will play continuously, impacting the types of ads returned.\u003c/p\u003e\n"],["\u003cp\u003eUse \u003ccode\u003esetContinuousPlayback(true)\u003c/code\u003e when your content videos will autoplay or play in a sequence similar to a TV broadcast.\u003c/p\u003e\n"],["\u003cp\u003eContinuous play is independent of ad auto-play, which is controlled using the \u003ccode\u003esetAdWillAutoPlay()\u003c/code\u003e method.\u003c/p\u003e\n"],["\u003cp\u003eThe table provides guidance on when to use \u003ccode\u003esetContinuousPlayback()\u003c/code\u003e and \u003ccode\u003esetAdWillAutoPlay()\u003c/code\u003e based on your video content's autoplay behavior.\u003c/p\u003e\n"]]],[],null,["# Report continuous play\n\nThe IMA SDK for Android allows for setting the continuous play context for an ads request. The `\n`[setContinuousPlayback()](/interactive-media-ads/docs/sdks/android/client-side/api/reference/com/google/ads/interactivemedia/v3/api/AdsRequest#setContinuousPlayback(boolean)) method notifies the SDK whether the player intends to continuously play the content videos one after another, similar to a TV broadcast. When set to `true`, the ads returned from the request are those designated by the ads server as suitable for continuous play. Not calling this method leaves the setting as unknown. **Note:** Changing this setting has no impact on ad playback.\nThe following sample demonstrates how to set continuous play in an ads request. \n\n```text\nAdsRequest request = mSdkFactory.createAdsRequest();\nrequest.setAdTagUrl(adTagUrl);\nrequest.setContinuousPlayback(true);\nadsLoader.requestAds(request);\n```\nFor those using the [Exoplayer-IMA extension](//github.com/google/ExoPlayer/tree/release-v2/extensions/ima), version 2.13 or later, or the [BasicExample](//github.com/googleads/googleads-ima-android/tree/master/BasicExample) which implements the extension, the following sample shows how to set continuous play. \n\n```transact-sql\n@Override\nprotected void onCreate(Bundle savedInstanceState) {\n super.onCreate(savedInstanceState);\n setContentView(R.layout.activity_my);\n\n playerView = findViewById(R.id.player_view);\n\n ImaAdsLoader.Builder builder = new ImaAdsLoader.Builder(this).setContinuousPlayback(true);\n adsLoader = builder.build();\n}\n```\n\nHow continuous play differs from ad auto-play\n---------------------------------------------\n\nThe IMA SDK for Android also allows for setting whether the player will start playing automatically or wait for user action to begin playing. This is done using the `\n`[setAdWillAutoPlay()](/interactive-media-ads/docs/sdks/android/client-side/api/reference/com/google/ads/interactivemedia/v3/api/AdsRequest#setAdWillAutoPlay(boolean)) method. When set to `true`, the ads returned are those designated by the ads server as suitable for an auto-play environment.\n\n\nThis table details when to request ads for continuous play and auto-play, based on the video content\nthe ads are paired with.\n\n| Video Content | Parameter for setContinuousPlayback() | Parameter for setAdWillAutoPlay() |\n|------------------------------------------------------------------------------------------------------|---------------------------------------|-----------------------------------|\n| A single content video that plays upon user interaction | `false` | `false` |\n| A single content video that autoplays | `false` | `true` |\n| A video playlist that plays the first video upon user interaction but autoplays the following videos | `true` | `false` |\n| A video playlist that autoplays the first video and autoplays the following videos | `true` | `true` |"]]