本文整理汇总了C++中ImageView::getLayoutSize方法的典型用法代码示例。如果您正苦于以下问题:C++ ImageView::getLayoutSize方法的具体用法?C++ ImageView::getLayoutSize怎么用?C++ ImageView::getLayoutSize使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ImageView
的用法示例。
在下文中一共展示了ImageView::getLayoutSize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: initWithDialog
bool LevelCompleteLoss::initWithDialog(Dialog* dialog)
{
//if (!LayerColor::initWithColor(Color4B(255, 0, 0, 255))) return false;
this->m_pDialog = dialog;
Layout* layout = static_cast<Layout*>(cocostudio::GUIReader::getInstance()->widgetFromJsonFile("ui/Lose.json"));
addChild(layout);
ImageView *imageView = static_cast<ImageView*>(layout->getChildByName("Image_1"));
this->setContentSize(imageView->getLayoutSize());
Button * btn_menu = static_cast<Button*>(layout->getChildByName("btn_menu"));
Button * btn_reset = static_cast<Button*>(layout->getChildByName("btn_reset"));
Button * btn_next = static_cast<Button*>(layout->getChildByName("btn_next"));
this->m_pLabelDesc = static_cast<Text*>(layout->getChildByName("label_desc"));
btn_menu->addTouchEventListener(CC_CALLBACK_2(LevelCompleteLoss::btn_menuCallback,this));
btn_reset->addTouchEventListener(CC_CALLBACK_2(LevelCompleteLoss::btn_resetCallback, this));
layout->setAnchorPoint(Vec2(0.5,0.5));
return true;
}