Created
January 16, 2016 08:57
-
-
Save Sinitca-Aleksandr/4f95dfe3de2ebbf9d3e3 to your computer and use it in GitHub Desktop.
Следующие строки можно добавить в метод onCreate активности после которой вы хотите показать объявление.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Создание межстраничного объявления. | |
| interstitial = new InterstitialAd(this); | |
| interstitial.setAdUnitId("ca-app-pub-xx/xx"); | |
| // Создание запроса объявления. | |
| AdRequest adRequest = new AdRequest.Builder().build(); | |
| // Запуск загрузки межстраничного объявления. | |
| interstitial.loadAd(adRequest); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment