Appcelerator钛机器人崩溃

时间:2017-02-19 17:57:24

标签: android titanium titanium-mobile appcelerator-titanium titanium-android

在android(再次)中,我收到以下错误,当我进入屏幕时,应用程序停止工作:

[ERROR] :  TiApplication: (main) [629,72636] Sending event: exception on thread: main msg:java.lang.ClassCastException: java.lang.Object[] cannot be cast to org.appcelerator.titanium.proxy.TiViewProxy; Titanium 6.0.1,2016/12/19 16:51,undefined
[ERROR] :  TiApplication: java.lang.ClassCastException: java.lang.Object[] cannot be cast to org.appcelerator.titanium.proxy.TiViewProxy
[ERROR] :  TiApplication:   at org.appcelerator.titanium.proxy.TiViewProxy.handleMessage(TiViewProxy.java:237)
[ERROR] :  TiApplication:   at android.os.Handler.dispatchMessage(Handler.java:98)
[ERROR] :  TiApplication:   at android.os.Looper.loop(Looper.java:148)
[ERROR] :  TiApplication:   at android.app.ActivityThread.main(ActivityThread.java:5417)
[ERROR] :  TiApplication:   at java.lang.reflect.Method.invoke(Native Method)
[ERROR] :  TiApplication:   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
[ERROR] :  TiApplication:   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
[ERROR] :  D/        (  691): HostConnection::get() New Host Connection established 0xdd0a53a0, tid 3809
[INFO] :   Process: Sending signal. PID: 3733 SIG: 9
[INFO] :   D/        ( 3814): HostConnection::get() New Host Connection established 0xee930780, tid 3814
[INFO] :   D/        ( 3814): HostConnection::get() New Host Connection established 0xf3d7c940, tid 3852

我不知道错误信息是什么意思,为什么我收到“HostConnection :: get()建立新主机连接0xf3d7c940,tid 3852”?

详情添加: 在我的代码上我有这样的东西:

<Alloy>
    <Window>
        <Require type="view" id="dashboard_center" src="mydashboard/myprofile" />
    </Window>
</Alloy>

在我的个人资料控制器中,我有一个地方:

.... FROM REMOTE ...
_.each(response, function(mission, key, obj) {  
    $.block.add(Alloy.createController("common/user_profile", obj[i]).getView()); 
i++;});

最后更新......

我似乎是我的问题来自这个循环,当我尝试将一个对象添加到视图(在ios上工作),但在android上失败,任何帮助? :

var s = [];
var star_style = $.createStyle({
    classes : 'star'
});

for (var i = 0; i < total_notes; i++) {
    var star = Ti.UI.createImageView({
        image : 'images/stars.png',
        classes : ["star"],
    });
    star.applyProperties(star_style);
    s.push(star);
}

$.stars_container.add(s);

当我评论最后一行($ .stars_container.add(s))时,崩溃消失了。 谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

这与方法someView.addView(something);非常相关,其中something表示不是Ti.UI元素。

尝试验证您添加到Ti.UI.View的所有内容是另一个Ti.UI组件。