私は Titanium Studio を初めて使用します。行の高さを動的に設定する必要がありますが、各行に動的な高さを設定できません。以下は私のコードです:
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);
}
行の高さを動的に設定するにはどうすればよいですか。
誰でも助けることができますか?