O SDK dos anúncios para dispositivos móveis do Google oferece suporte a tamanhos de anúncio fixos para situações em que os anúncios de banner adaptáveis não atendem às suas necessidades.
A tabela a seguir lista os tamanhos padrão de banner.
Tamanho em dp (LxA) | Descrição | Disponibilidade | Constante AdSize |
---|---|---|---|
320 x 50 | Banner | Smartphones e tablets | GADAdSizeBanner |
320 x 100 | Banner grande | Smartphones e tablets | GADAdSizeLargeBanner |
300 x 250 | Retângulo médio do IAB | Smartphones e tablets | GADAdSizeMediumRectangle |
468 x 60 | Banner do IAB em tamanho real | Tablets | GADAdSizeFullBanner |
728 x 90 | Ranking do IAB | Tablets | GADAdSizeLeaderboard |
Para definir um tamanho de banner personalizado, use GADAdSizeFromCGSize
:
Swift
let adSize = GADAdSizeFromCGSize(CGSize(width: 250, height: 250))
Objective-C
GADAdSize size = GADAdSizeFromCGSize(CGSizeMake(250, 250));