123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import QtQuick 1.0
- Rectangle {
- width: 360
- height: 500
- Text {
- anchors.centerIn: parent
- text: "Hello World"
- }
- Component.onCompleted: ad.loadAd();
- /*
- InnerActiveAd {
- id: ad
- width: 360
- height: 100
- x: 0
- y: 0
- appid: "blah"
- }
- */
- /*
- InnerActiveAdInterstitial {
- id: interstitial
- width: parent.width
- height: parent.height
- appid: "blah"
- skipIn: 20
- }
- */
- InnerActiveAdRotate {
- id: rotateAd
- width: 360
- height: 200
- x: 0
- y: 0
- screenWidth: 360
- screenHeight: 640
- interval: 5
- appid: "blah"
- }
- }
|