码迷,mamicode.com
首页 >  
搜索关键字:drawer layout    ( 7424个结果
编译打包Apache源码
如果要编写定制的Apache模块,最总需要编译成Apache包。 命令如下: % ./buildconf % ./configure --prefix=/usr/local/apache > --with-layout=Apache --enable-modules=most --enable-mods-shared=all > --with-mpm=prefork % make #mak...
分类:其他好文   时间:2014-07-22 22:59:34    阅读次数:243
Cocos2d-x3.0 RenderTexture(一) 保存
.h #include "cocos2d.h" #include "cocos-ext.h" #include "ui/CocosGUI.h" #include "cocostudio/CocoStudio.h" USING_NS_CC; USING_NS_CC_EXT; using namespace ui; RenderTexture* _target; Vector _...
分类:其他好文   时间:2014-05-02 20:33:15    阅读次数:370
Cocos2d-x3.0 Button
Size widgetSize = Director::getInstance()->getWinSize(); Text* alert = Text::create("Layout", "fonts/Marker Felt.ttf", 30 ); alert->setColor(Color3B(159, 168, 176)); a...
分类:其他好文   时间:2014-05-01 21:53:45    阅读次数:461
cocos2d-x3.0 相对布局(一)
2dx中的相对布局和Android中的非常类似,如果之前做过Android应该非常容易上手。 Size widgetSize = Director::getInstance()->getWinSize(); Text* alert = Text::create("Layout", "fonts/Marker Felt.ttf", 30 ); ...
分类:其他好文   时间:2014-05-01 18:33:56    阅读次数:2383
Cocos2d-x layout (二)
相对某个控件进行布局 Size widgetSize = Director::getInstance()->getWinSize(); Text* alert = Text::create("Layout", "fonts/Marker Felt.ttf", 30 ); alert->setColor(Color3B(159, 168, 176)...
分类:其他好文   时间:2014-05-01 18:04:08    阅读次数:503
cocos2d-x3.0 ScrollView
.h #include "cocos2d.h" #include "cocos-ext.h" #include "ui/CocosGUI.h" #include "cocostudio/CocoStudio.h" USING_NS_CC; USING_NS_CC_EXT; using namespace ui; .cpp layout = Layout::crea...
分类:其他好文   时间:2014-04-30 22:33:39    阅读次数:382
cocos2d-x3.0 PageView
.h添加如下代码: void pageViewEvent(Ref *pSender, PageViewEventType type);...
分类:其他好文   时间:2014-04-30 22:31:39    阅读次数:405
Cocos2d-x3.0 LoadingBar
.h中添加 int _count; Layout* layout; void update(float delta); layout = Layout::create(); layout->setSize(Size(widgetSize.width, widgetSize.height));...
分类:其他好文   时间:2014-04-30 22:28:39    阅读次数:401
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,...
分类:其他好文   时间:2014-04-30 22:23:38    阅读次数:421
android:layout_weight的真实含义
首先声明只有在Linearlayout中,该属性才有效。之所以android:layout_weight会引起争议,是因为在设置该属性的同时,设置android:layout_width为wrap_content和match_parent会造成两种截然相反的效果。如下所示: <LinearLayout android:layout_width="match_parent" ...
分类:移动开发   时间:2014-04-29 13:14:20    阅读次数:391
7424条   上一页 1 ... 739 740 741 742 743 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!