我怎么能把视图放在钛的视图中

时间:2016-02-24 23:52:45

标签: android ios iphone titanium titanium-mobile

我有三个视图,一个主视图和两个子视图

主要观点:

var viewMain = Ti.UI.createView();
viewManin.layout = 'vertical';
viewManin.backgroundColor = 'transparent';
viewManin.width = deviceWidth;

子视图1:

var viewChild1 = Ti.UI.createView();
viewChild1.layout = 'vertical';
viewChild1.height = 'auto';
viewChild1.backgroundColor = 'transparent';
viewChild1.width = deviceWidth;

子视图2:

var viewChild2 = Ti.UI.createView();
viewChild2.layout = 'vertical';
viewChild2.height = 'auto';
viewChild2.backgroundColor = 'transparent';
viewChild2.width = deviceWidth;

向主视图添加视图:

viewMain.add(viewChilde1);
viewMain.add(viewChilde2);

在每个子视图中,我有可变文本大小的标签,所以我无法定义视图的高度。我将子视图添加到主视图中的情况是,最后添加的视图占据了整个主视图。如何让两个视图出现在屏幕上?

1 个答案:

答案 0 :(得分:2)

@Manuel_Rodrigues!我想在你尝试这样做之前,你应该花点时间阅读API钛。在不同的情况下,您可以通过一个很好的状态来解释属性 Ti.UI.FILL Ti.UI.SIZE AUTO 他们。在这里,我为你写了一个例子:

var win = Ti.UI.createWindow({
    width: '100%',
    height: '100%'
});

var mainView = Ti.UI.createView({
    width: '100%',
    height: 'auto',
    layout: 'vertical',
    horizontalWrap: true
});
win.add(mainView);

var view1 = Ti.UI.createView({
    top: 10,
    left: 10,
    width: '45%',
    borderRadius: 5,
    height: Ti.UI.SIZE,
    backgroundColor: '#25649d'
}); 
win.add(view1);

var viewLabel1 = Ti.UI.createLabel({
    font:{
        fontSize: 16
    },
    width: 'auto',
    height: 'auto',
    color: 'black',
    textAlign: 'left',
    verticalAlign: Ti.UI.TEXT_ALIGNMENT_CENTER,
    text: 'this is a very long long long long long long text.'
});
view1.add(viewLabel1);    

var view2 = Ti.UI.createView({
    top: 10,
    right: 10,
    width: 'auto',
    borderRadius: 5,
    height: Ti.UI.SIZE,
    backgroundColor: '#25649d'
}); 
win.add(view2);

var viewLabel2 = Ti.UI.createLabel({
    font:{
        fontSize: 16
    },
    width: 'auto',
    height: 'auto',
    color: 'black',
    textAlign: 'right',
    verticalAlign: Ti.UI.TEXT_ALIGNMENT_CENTER,
    text: 'yes, I had seen it!'
});
view2.add(viewLabel2);     

如果您运行此代码,它应显示如下:

enter image description here