0

我正在尝试将 ImageView 添加到容器中,因为它没有出现在屏幕上。容器是在 QML 中创建的,但我希望将图像添加到 .CPP 文件中。

应用程序UI.cpp:

 ApplicationUI::ApplicationUI(bb::cascades::Application *app)
   : QObject(app)
   {
QmlDocument *qml = QmlDocument::create("asset:///main.qml").parent(this);

AbstractPane *root = qml->createRootObject<AbstractPane>();

ImageView* imageView1 = new ImageView();
imageView1->setImage(Image("asset:///icon.png"));

Page *page = qml->createRootObject<Page>();
Container *_mRootContainer = page->findChild<Container*>("rootContainer");

_mRootContainer->add( imageView1 );
app->setScene(root);

 }

主.xml:

import bb.cascades 1.0


Page {
    Container {
        objectName: "rootContainer"
        Label {
            text: "First page"
        }
    }
 }

提前致谢 ;)

4

2 回答 2

0

您可以在 .CPP 文件中创建图像容器,然后将所有图像创建/添加到容器中。例如:在此处使用 DockLayout 将图像置于彼此之上并将它们置于父容器中。

//Create the images container and center it within parent container

    Container *imageContainer = new Container();
    imageContainer->setLayout(new DockLayout());
    imageContainer->setHorizontalAlignment(HorizontalAlignment::Center);

//Create the image (add the image file into asset folder)

    ImageView* imageView1 = ImageView::create("asset:///icon.png");

//Align/center image horizontally and vertically within parent container

    imageView1->setHorizontalAlignment(HorizontalAlignment::Center);
    imageView1->setVerticalAlignment(VerticalAlignment::Center);

//Add images to image container

    imageContainer->add(imageView1); 
于 2013-07-09T18:34:48.617 回答
0

我建议在WebView中显示图像

祝你好运

于 2013-09-19T23:40:16.857 回答