我在我的应用程序中创建了自定义复选框。我对复选框没有任何问题,如果标签文本很小,它就是标签。如果标签文本很大(超过一行),则对齐显示不正确。
看上面的截图:第一个选项标签文本是“请选择 2 个主要原因来评价程序测试程序”,第二个选项标签文本是“问题 2”。如果第一个标签中的文本很小,适合一行,那么 UI 看起来不错。但如果文本不止一行,我将面临上述问题。
我的代码如下,
看法:
<Label class="standardType1">Please select the 2 primary reasons rating the program?</Label>
<View class="checkBoxContainerView">
<Widget id="box1" src="checkbox" value="true"/>
<Label class="question1">Please select the 2 primary reasons rating the program testing the program</Label>
</View>
<View class="checkBoxContainerView">
<Widget id="box2" src="checkbox" value="true"/>
<Label class="question1">Question2</Label>
</View>
风格:
"#box1":
{
height: Ti.UI.SIZE,
width: Ti.UI.SIZE,
left:10
}
"#box2":
{
height: Ti.UI.SIZE,
width: Ti.UI.SIZE,
left:10
}
".question1":
{
top: 3,
left: 13,
width: Ti.UI.SIZE,
height: Ti.UI.SIZE,
color: '#fff',
font:{
fontSize: 16,
fontWeight: 'normal'
}
}
".checkBoxContainerView":
{
left: 15,
width: Ti.UI.SIZE,
height: Ti.UI.SIZE,
layout: 'horizontal'
}
任何人都可以帮助我吗?即使标签文本超过一行,视图的高度也应该自动增加并且选项应该是视图。请帮我。