1

我是钛工作室的新手。需要动态设置行高,但是我无法在每一行中设置动态高度。下面是我的代码:

textArray 包含 10 个文本段落。每个段落都有不同的高度。

var myTable = Ti.UI.createTableView({height:360, width: 306, top: 58, backgroundColor: '#FFFFFF',borderColor: '#C8C8C8',borderWidth:2, zIndex: -1});
var myArray = [];

for(int i = 0; i < 10; i++)
{

    var row = Ti.UI.createTableViewRow({contentHeight: 'auto', width: 320,top:0});

    var my = Ti.UI.createView({ top:10,width:300,height:'auto' });

    var myText = Ti.UI.createlLabel({text:textArray[i],width:50,height:'auto',left:10,top:5,borderRadius:4});

    my.add(myText);

    row.add(my);
    myArray.push(row);

}

如何动态设置行高。

任何人都可以帮忙吗?

4

3 回答 3

1

根据理解,您需要根据文本显示单元格高度

这里有一些很好的例子

  1. Stackoverflow 上的类似帖子

  2. 一些博客上给出的例子

希望这能解决你的问题。

于 2012-10-08T12:27:47.537 回答
1

我得到了解决方案:

specify your table rowHeight as auto.

var myTable = Ti.UI.createTableView({height:400,rowHeight: 'auto', width: 312, top: 10,left:4, backgroundColor: '#FFFFFF',borderColor: '#C8C8C8',borderWidth:2, zIndex: -1});
var myArray=[];   

for(int i = 0; i < 10; i++)
{
    //create row in table.
    var row = Ti.UI.createTableViewRow({height: 'auto', width: 310,top:10, selectionStyle : Titanium.UI.iPhone.TableViewCellSelectionStyle.NONE});

    //textArray contains 10 elements. i am using this in each loop..
    var myText = Ti.UI.createlLabel({text:textArray[i],width:50,height:50,left:10,top:5,borderRadius:4});

    //add like this what ever you want...
    row.add(myText);

    myArray.push(row);

}

//store in table
myTable.data = myArray;

//disply table.
win.add(myTable);

如果 height:'auto' 属性不起作用,则使用 Ti.UI.SIZE

我希望..有人会使用它。

于 2012-10-22T05:41:47.900 回答
-1

将内容高度更改为您想要的表格高度外观

于 2012-10-08T12:29:01.877 回答