示例#1
0
        /// <summary>
        /// Load the interaction Ad asynchronously and notice on listener.
        /// </summary>
        public void LoadInteractionAd(
            AdSlot adSlot, IInteractionAdListener listener)
        {
            var androidListener = new InteractionAdListener(listener);

            this.adNative.Call(
                "loadInteractionAd", adSlot.Handle, androidListener);
        }
示例#2
0
 /// <summary>
 /// Load the interaction Ad asynchronously and notice on listener.
 /// </summary>
 public void LoadInteractionAd(
     AdSlot adSlot, IInteractionAdListener listener)
 {
     listener.OnError(0, "Not Support on this platform");
 }
示例#3
0
 public InteractionAdListener(IInteractionAdListener listener)
     : base("com.bytedance.sdk.openadsdk.TTAdNative$InteractionAdListener")
 {
     this.listener = listener;
 }