Back to project page tapad-android-sdk.
The source code is released under:
MIT License
If you think the Android project tapad-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tapad.adserving; // www. j a v a2s . c om /** * Public interface to the ad serving service for developers who want access to the * raw HTML markup. If a managed ad view is preferred, please use an AdView instance instead. * <p/> * An instance of this service can be retrieved byt invoking AdService.get(). * * @see AdServing * @see com.tapad.adserving.ui.AdView */ public interface AdServingService { /** * Asynchronously request markup for an ad. This method may be called from the UI thread, * but the adRequest.onResponse() method will be invoked on a background thread. * * @param adRequest the request to invoke */ public void requestAd(AdRequest adRequest); }