English 中文(简体)
接受者——混合体中的新bie!
原标题:Appcelerator - Newbie in the mix!

对任何使用接收器的开发商的速率。 我有两个标签(甚至可能是错的),这些标签来自RSS的饲料。 一个标签是所有权,另一个标签。 这些内容来自所有工作都经过细微的RSS清单。 我要问一题是,有些头衔比其他头衔更长,因此我可以贴上标签高,或只是赢得工作。

因此,我确定标题高度为自动化。 唯一的问题是,我必须从我的第二个标签中提一下这个高潮:财产到正确空间。

是否有任何人提出好的建议? 采用 TitanUI方法的错误类型?

我目前的法典如下:

try
{
var current = Titanium.UI.currentWindow;
var selectedItem = current.item;
var description = selectedItem.getElementsByTagName("description");
var story = description.item(0).text;


var label = Ti.UI.createLabel({
                    text:selectedItem.getElementsByTagName("title").item(0).text,
                    left:5,
                    top:0,
                    height:"auto",
                    font:{fontSize:40}
                });
current.add(label);

var story = Ti.UI.createLabel({
                    text:story,
                    left:5,
                    top:label.height,
                    height:"auto"
                });
label.add(story);

}
catch(E)
{
 alert(E)
}
问题回答

关于包含的窗口/观点,将布局性财产划为纵向,这意味着这些观点在相互之间被打上顶层,因此,你的最高价值不一定知道前一个组成部分的高度。

// Windows
var window = Ti.UI.createWindow({
    layout:  vertical ,
    backgroundColor:  #FFF 
});

var label = Ti.UI.createLabel({
    width: 200,
    height:  auto ,
    text:  some long text 
});

var label2 = Ti.UI.createLabel({
    width: 200,
    height:  auto ,
    text:  more long text ,
    top: 10 // This just adds some padding between the two labels
});

window.add(label);
window.add(label2);

window.open();




相关问题
Code sign Error

I have created a new iPhone application.I have two mach machines. I have created the certificate for running application in iPhone in one mac. Can I use the other mac for running the application in ...

ABPersonViewController Usage for displaying contact

Created a View based Project and added a contact to the AddressBook using ABAddressBookRef,ABRecordRef now i wanted to display the added contact ABPersonViewController is the method but how to use in ...

将音频Clips从Peter改为服务器

我不禁要问,那里是否有任何实例表明从Peit向服务器发送音响。 I m不关心电话或SIP风格的解决办法,只是一个简单的袖珍流程......

• 如何将搜查线重新定位?

我正试图把图像放在搜索条左边。 但是,问题始于这里,搜索条线不能重新布署。

热门标签