Beispiel #1
0
 void onAdClicked(AndroidJavaObject ad)
 {
     this.interstitialAd.executeOnMainThread(() => {
         if (interstitialAd.InterstitialAdDidClick != null)
         {
             interstitialAd.InterstitialAdDidClick();
         }
     });
 }
 private void onAdClicked(AndroidJavaObject ad)
 {
     interstitialAd.executeOnMainThread(delegate
     {
         if (interstitialAd.InterstitialAdDidClick != null)
         {
             interstitialAd.InterstitialAdDidClick();
         }
     });
 }