Cocos2d-x Layout簡單使用


1、

        Text* alert = Text::create("Layout", "fonts/Marker Felt.ttf", 30 );
        alert->setColor(Color3B(159, 168, 176));
        alert->setPosition(Point(widgetSize.width / 2.0f,
                                 widgetSize.height / 2.0f - alert->getSize().height * 3.075f));
        
        addChild(alert);
        
        
        Layout* layout = Layout::create();
        layout->setSize(Size(280, 150));
        layout->setBackGroundColorType(LAYOUT_COLOR_SOLID);
        layout->setBackGroundColor(Color3B::RED);
        layout->setPosition(Point(widgetSize.width / 2,widgetSize.height / 2));
        addChild(layout);
        
        Button* button = Button::create("animationbuttonnormal.png", "animationbuttonpressed.png");
        button->setPosition(Point(button->getSize().width / 2.0f,
                                  layout->getSize().height - button->getSize().height / 2.0f));
        layout->addChild(button);
        
        
        Button* titleButton = Button::create("backtotopnormal.png","backtotoppressed.png");
        titleButton->setTitleText("Title Button");
        titleButton->setScale9Enabled(true);
        titleButton->setSize(Size(100, 100));
        titleButton->setTitleFontSize(20);
        
        
        titleButton->setPosition(Point(layout->getSize().width / 2.0f, layout->getSize().height / 2.0f));
        layout->addChild(titleButton);


 /*漸變色*/
        layout->setBackGroundColorType(LAYOUT_COLOR_GRADIENT);
        layout->setBackGroundColor(Color3B::RED, Color3B(192, 192, 192));

   /*單色*/
        layout->setBackGroundColorType(LAYOUT_COLOR_SOLID);
        layout->setBackGroundColor(Color3B::RED);


 /*以圖片為背景*/
        layout->setBackGroundImageScale9Enabled(true);
        layout->setBackGroundImage("green_edit.png");

 //縱向排列,這里相似Android里的線性布局
         layout->setLayoutType(LAYOUT_LINEAR_VERTICAL);

 //橫向排列,這里相似Android里的線性布局
         layout->setLayoutType(LAYOUT_LINEAR_HORIZONTAL);




免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM