/// <summary> /// Load the draw feed Ad asynchronously and notice on listener. /// </summary> public void LoadDrawFeedAd(AdSlot adSlot, IDrawFeedAdListener listener) { var androidListener = new DrawFeedAdListener(listener); this.adNative.Call( "loadDrawFeedAd", adSlot.Handle, androidListener); }
/// <summary> /// Load the draw feed Ad asynchronously and notice on listener. /// </summary> public void LoadDrawFeedAd(AdSlot adSlot, IDrawFeedAdListener listener) { listener.OnError(0, "Not Support on this platform"); }
public DrawFeedAdListener(IDrawFeedAdListener listener) : base("com.bytedance.sdk.openadsdk.TTAdNative$DrawFeedAdListener") { this.listener = listener; }