钛合金框架构造错误

时间:2014-11-19 04:08:29

标签: titanium titanium-alloy genymotion

它给我一个错误“无法调用未定义文件的方法createimageview”

var imgpldt= Ti.Ui.createImageView({
image: "sponsors/Home DSL.png"
});

$.pldt.add(imgpldt);

继承人xml:

<Alloy>
<ScrollView class="container vertical whitebg actionBarTop">
    <View class="sponsorWrapper blackbg vertical">
        <View class="sponsorLogo" id='pldt'/>
        <View class="whitebg socialContainer">
            <View class="socialWrapper horizontal whitebg">
                <ImageView class="top10" id='pldtFB' image="/facebook.png"/>
            </View>
        </View>
    </View>
</ScrollView>
</Alloy>

1 个答案:

答案 0 :(得分:0)

Arkaem,

您犯了一个非常小的错误,Ui将其更改为UI,如下所示,然后对其进行测试。

var imgpldt= Ti.UI.createImageView({
 image: "sponsors/Home DSL.png"
});