zoukankan      html  css  js  c++  java
  • cocos2dx 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);
  • 相关阅读:
    java发送邮件
    MySQL查询表结构的SQL语句
    Jquery的toggle()方法
    jQuery为图片添加链接(创建新的元素来包裹选中的元素)
    mysql修改存储过程的权限
    php中接收参数,不论是来自GET还是POST方法
    解决php中文乱码
    MySQL的视图view,视图创建后,会随着表的改变而自动改变数据
    选项卡面向对象练习
    对数组的操作splice() 和slice() 用法和区别
  • 原文地址:https://www.cnblogs.com/aibox222/p/8682474.html
Copyright © 2011-2022 走看看