Giter VIP home page Giter VIP logo

Comments (1)

deckameron avatar deckameron commented on September 18, 2024

Hi @kerbooo
I am sorry I took so long to answer you question. I probably have already found a solution, but this is how i do it.

var len = obj.data.length;
for (var i = 0; i < len; i++){   
     
    if(i == 2 || i == 9){
         
        section = Titanium.UI.createListSection();
        listView.appendSection(section);
         
        var masterAdView = Titanium.UI.createView({
            left : 0,
            right : 0,
            height : Titanium.UI.SIZE,
            backgroundColor : '#FFFFFF',
        });
        section.setHeaderView(masterAdView);
         
        var AdSpinner = Titanium.UI.createActivityIndicator({
            style: Titanium.UI.ActivityIndicatorStyle.BIG,
            width: 24,
            height: 24,
            zIndex : 1
        });
        masterAdView.add(AdSpinner);
         
        AdSpinner.show();
         
        var bannerAd = Admob.createView({
            testDeviceId : "7F5EA3D9BA8CAFA53EA785A1826FF331",
            adSizeType: 'BANNER',
            adUnitId: "ca-app-pub-XXXXXX",
            publisherId : "ca-app-pub-XXXXXX",
            zIndex : 2,
            spinner : AdSpinner
        });
        masterAdView.add(bannerAd);

        bannerAd.addEventListener('ad_received', function(e) {
            this.spinner.hide();
            Titanium.API.warn("======================== NAVITE ADS RECEIVED ========================");
            //AdSpinner.hide();
        });
         
        bannerAd.addEventListener('ad_not_received', function(e) {
            this.spinner.hide();
            Titanium.API.error("======================== NAVITE ADS FAILED ========================");
            AdSpinner.hide();
        });
    }
     
    var data = [
        {
            bubbleParent : false,
            id: obj.data[i].id,
            image : { image : obj.data[i].image },
            name : { image : obj.data[i].name },
        }
    ];          
     
    section.appendItems(data);
}

from ti.android.admob.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.