Playback of linear adverts
Layout XML to support linear adverts
For each layout and screen density that needs to support adverts, you may need to edit the layout files. The following example shows a layout identified as ad_container
being allocated for the rendering of linear adverts.
Player Java source code
Importing the IMAWrapper classes
Adjust the package path if you changed the source code. Two additional attributes IMAWrapper
and IMAWrapperDelegate
are required in the code for the class that extends Activity
.
import com.nagra.example.dynamicima.adverts.IMAWrapper;
import com.nagra.example.dynamicima.adverts.IMAWrapperDelegate;
Implementing the wrapper delegate
The delegate needs to implement functions to handle the interactions between the adverts manager and the application.
To ensure that pre-roll adverts play before the content, hold back the mVideoView.start()
method until the pre-roll adverts have played. So that the content does not re-start after post-roll adverts play, we advise you to check to see if the content has already completed.
Between adverts in a pod or just before the start of an advert, a freeze-frame of the content will be seen unless action is taken to avoid it. If you prefer to display a black frame, remove the video view when adverts start and reinstate it on completion.
Any latency with the Google IMA system starting playback of an advert may elongate the freeze-frame or black screen. The removal action can be taken as late as possible, such as on receipt of the Ad Started event, to reduce the black frame time. You can do this by removing the view when the IMAWrapperDelegate advertStarted()
method is called.
To log more information about the Google IMA system, you can implement the appropriate code in the logEvent()
method. Google IMA reports errors via the IMAWrapper
and this method in the IMAWrapperDelegate
.
Instantiating the wrapper
During the creation of this activity, such as within the onCreate()
method, you must create and configure the IMAWrapper
member and then call startAdsServices()
on it, passing the user interface ViewGroup
set aside for linear adverts as well as the configuration options selected.
ViewGroup adUiContainerViewGroup = (ViewGroup) findViewById(R.id.ad_container);
mIMAWrapper = new IMAWrapper(mContext);
mIMAWrapper.startAdsServices(adUiContainerViewGroup);
The call to startAdsServices()
is slightly different if companion adverts are also used.
Associating the delegate to the wrapper
The wrapper needs to be made aware of the delegate via the setDelegate()
method.
mIMAWrapper.setDelegate(mIMADelegate);
Alternatively, you can pass the delegate to the wrapper’s constructor when you create it:
mIMAWrapper = new IMAWrapper(mContext, mIMADelegate);
Requesting the adverts
Pass the advert tag URI into the IMAWrapper
via the requestAds()
method.
mIMAWrapper.requestAds(xAdvertTag);
You should callrequestAds()
as early as possible to minimise latency in retrieving the ads.
Replacing playback content (zapping)
Destroying the IMAWrapper
instance cancels any scheduled adverts and terminates a playing advert if it exists. If you keep the IMAWrapper
instance, you must request a new advert session with requestAds()
whenever the playback content changes. A stopIMAServices()
method is provided in the IMAWrapper
to clean up an old configuration and its associated instances.
For a better user experience, pause the new content after the new URI is set to allow for pre-roll adverts to appear before any of the new content is shown.
Next step: Enable playback of companion adverts.