1

如何在 BlackBerry 10 中使用表格组件?

我有一个ImageViewLabel

默认情况下,Container它们被设置在另一个之上。因此,我想将它们水平对齐而不是下面的预览。

Container {

            ImageView {
                       imageSource: "asset:///images/image.png"
                       }
                        Label {
                                preferredHeight: 200
                                text: "Simple Text"

                            }  
                        }

这段代码的输出是

[图片]

[文本]

我想把它们放在

[图片] [文字]

4

1 回答 1

1

在您的容器上,您需要添加从左到右的方向。

以下是您上面代码的示例:

Container {
        layout: StackLayout {
            orientation: LayoutOrientation.LeftToRight
        }

        ImageView {
                   imageSource: "asset:///images/image.png"
                   }
                    Label {
                            preferredHeight: 200
                            text: "Simple Text"

                   }  
}
于 2013-02-01T10:33:34.963 回答