11-27-2012 10:30 PM
Maybe I'm just not looking hard enough, but the documentation doesn't seem to indicate all of the available ad sizes supported by the advertising service. The adservices.blackberry.com also has no info on ad sizes.
The example code shows ad sizes around 320px and 50px high. That's very very tiny, relative to the 768x1280 screen on the first BB10 device and I'm concerned that if I incorporate those small ads, click through rates would be disappointing.
I'm curious if there are any other sizes available.
11-27-2012 11:35 PM
11-28-2012 07:27 AM
11-28-2012 09:49 AM
11-28-2012 10:04 AM
Im lookinf fowrad to seeing this info as well. I have added ads to my app and had to center it but the ads are way to small. at 320 x
im looking to make them 760 by 100.
11-28-2012 10:15 AM
11-28-2012 08:06 PM
Just tried adding scaleX and scaleY to the Banner element. It didn't seem to work when adding the scaling directly on the Element, but when I put the Banner in a Container and added the scaleX:2.25 and scaleY:2.25 properties to the parent container, it worked very nicely.
Note - I chose 2.25 to make the banner ad 720px wide.
11-28-2012 08:15 PM
Do u mind doing a small sample of it. I understand the ads banner part just not the container with scaling thanks.
11-28-2012 08:23 PM
@bbquincar, no prob. Here's my qml for the banner ad at the bottom of the screen, using the test zoneid...
Container {
layoutProperties: AbsoluteLayoutProperties {
positionY:1190
positionX:225
}
scaleX: 2.25
scaleY: 2.25
layout: StackLayout {}
Banner {
zoneId: 117145
refreshRate: 60
preferredWidth: 320
preferredHeight: 50
transitionsEnabled: true
placeHolderURL: "asset:///placeholder_728x90.png"
backgroundColor: Color.White
borderColor: Color.Gray
borderWidth: 2
horizontalAlignment: HorizontalAlignment.Center
}
}There might be better ways to do this without absolute positioning.
11-28-2012 08:25 PM
Thank you.