You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

67 lines
2.4 KiB

  1. // Copyright (C) 2015 Google, Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. using System;
  15. using GoogleMobileAds.Api;
  16. namespace GoogleMobileAds.Common {
  17. public interface IBannerClient
  18. {
  19. // Ad event fired when the banner ad has been received.
  20. event EventHandler<EventArgs> OnAdLoaded;
  21. // Ad event fired when the banner ad has failed to load.
  22. event EventHandler<AdFailedToLoadEventArgs> OnAdFailedToLoad;
  23. // Ad event fired when the banner ad is opened.
  24. event EventHandler<EventArgs> OnAdOpening;
  25. // Ad event fired when the banner ad is closed.
  26. event EventHandler<EventArgs> OnAdClosed;
  27. // Ad event fired when the banner ad is leaving the application.
  28. event EventHandler<EventArgs> OnAdLeavingApplication;
  29. // Creates a banner view and adds it to the view hierarchy.
  30. void CreateBannerView(string adUnitId, AdSize adSize, AdPosition position);
  31. // Creates a banner view and adds it to the view hierarchy with a custom position.
  32. void CreateBannerView(string adUnitId, AdSize adSize, int x, int y);
  33. // Requests a new ad for the banner view.
  34. void LoadAd(AdRequest request);
  35. // Shows the banner view on the screen.
  36. void ShowBannerView();
  37. // Hides the banner view from the screen.
  38. void HideBannerView();
  39. // Destroys a banner view.
  40. void DestroyBannerView();
  41. // Returns the height of the BannerView in pixels.
  42. float GetHeightInPixels();
  43. // Returns the width of the BannerView in pixels.
  44. float GetWidthInPixels();
  45. // Set the position of the banner view using standard position.
  46. void SetPosition(AdPosition adPosition);
  47. // Set the position of the banner view using custom position.
  48. void SetPosition(int x, int y);
  49. // Returns the mediation adapter class name.
  50. string MediationAdapterClassName();
  51. }
  52. }