Баннер
Баннерная реклама - это классические статические баннеры, которые обычно располагаются внизу или вверху экрана.
Appodeal поддерживает традиционные баннеры 320 x 50, баннеры 728 x 90 для планшетов и смарт-баннеры, которые адаптируются к размеру и ориентации устройства.
На экране одновременно может быть показан только один баннер.
Вы можете использовать наше демо приложение в качестве примера по интеграции.
Демо приложение (Бета)
Баннер С Фиксированной Позицией
Отображение
По умолчанию рекламные баннеры обновляются автоматически каждые 15 секунд. Для отображения баннера необходимо использовать следующий код:
- UPM Дистрибуция
- Manual Дистрибуция
// Display banner at the bottom of the screen
Appodeal.Show(AppodealShowStyle.BannerBottom);
// Display banner at the top of the screen
Appodeal.Show(AppodealShowStyle.BannerTop);
// Display banner at the left of the screen
Appodeal.Show(AppodealShowStyle.BannerLeft);
// Display banner at the right of the screen
Appodeal.Show(AppodealShowStyle.BannerRight);
// Display banner at the bottom of the screen
Appodeal.show(Appodeal.BANNER_BOTTOM);
// Display banner at the top of the screen
Appodeal.show(Appodeal.BANNER_TOP);
// Display banner at the left of the screen
Appodeal.show(Appodeal.BANNER_LEFT);
// Display banner at the right of the screen
Appodeal.show(Appodeal.BANNER_RIGHT);