作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有三个 View ,一个主视图和两个 subview
主视图:
var viewMain = Ti.UI.createView();
viewManin.layout = 'vertical';
viewManin.backgroundColor = 'transparent';
viewManin.width = deviceWidth;
subview 1:
var viewChild1 = Ti.UI.createView();
viewChild1.layout = 'vertical';
viewChild1.height = 'auto';
viewChild1.backgroundColor = 'transparent';
viewChild1.width = deviceWidth;
subview 2:
var viewChild2 = Ti.UI.createView();
viewChild2.layout = 'vertical';
viewChild2.height = 'auto';
viewChild2.backgroundColor = 'transparent';
viewChild2.width = deviceWidth;
向主视图添加 View :
viewMain.add(viewChilde1);
viewMain.add(viewChilde2);
在每个 subview 中,我都有可变文本大小的标签,因此我无法定义 View 的高度。当我将 subview 添加到主视图时,最后添加的 View 占据了整个主视图。我怎样才能让这两个 View 出现在屏幕上?
最佳答案
@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);
如果你运行这段代码,它应该显示如下:
关于android - 我如何将 View 放入钛的 View 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35615606/
我是一名优秀的程序员,十分优秀!