Quantcast
Channel: Appcelerator Developer Center Q&A Unanswered Questions 20
Viewing all articles
Browse latest Browse all 8068

Alloy - Adding a MapView (ti.map) inside an event

$
0
0

I'm getting an error message when attempting to add my MapView to my main component from within an event handler and an open window. I'm running on an emulator after looking up a few tricks to getting Maps v2 running. As I comment below, the map works fine when I add it to the main window from the main window evenlistener. But when I attempt to add it to the main window through globals and the other windows eventlistener it throws the error.

Let me give the example. In INDEX.JS I have a button that opens a modal window.

$.newRoundButton.addEventListener('click', function(e) {    
    if (Alloy.Globals.CurrentActivity != KUTIL.ACTIVITY.ACTIVEGAME) {
        /// Create Add Round Controller and Window View
        Alloy.Globals.NewRoundWindow.open();
        Alloy.Globals.AppWindow.add(Alloy.Globals.MapRoundView);
    } else {
        var dialog = Ti.UI.createAlertDialog({
            message: 'There is currently an active round.  Please end this round before starting another.',
            ok: 'Okay',
            title: 'Round Active'
        }).show();      
    }
});
Once the window is open I have another button / event handler to save a data to the database. Inside this event handler I'm attempting to add the mapview to the main appwindow:
$.saveButton.addEventListener('click', function(e) {
    if ($.courseName.value == '') {
        Ti.UI.createAlertDialog({
            title: 'Course Name',
            message: 'Course name can not be blank',
            ok: 'Okay'
        }).show();
        return null;
    }
 
    Titanium.App.fireEvent('app:newGameEvent', {
        coursedate: $.courseDate.value, 
        coursename: $.courseName.value,
        coursescore: 'NA'
    });
 
    // Close and dispose of Window
    Alloy.Globals.NewRoundWindow.close();
    Alloy.Globals.AppWindow.add(Alloy.Globals.MapRoundView);
});
** Note, that when I add the same line directly to the original button event handler it works without a problem. Which should be fine, I can get around the issue by adding it at the same time the window is opened and then removing it if the window cancel button is pressed (I think), but this should work no?
[ERROR] :  TiApplication: (main) [12991,12991] Sending event: exception on thread: main msg:java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState; Titanium 3.2.0,2013/12/20 10:57,d9182d6
[ERROR] :  TiApplication: java.lang.IllegalStateException: Can not perform this action after onSaveInstanceState
[ERROR] :  TiApplication:   at android.support.v4.app.FragmentManagerImpl.checkStateLoss(FragmentManager.java:1314)
[ERROR] :  TiApplication:   at android.support.v4.app.FragmentManagerImpl.enqueueAction(FragmentManager.java:1325)
[ERROR] :  TiApplication:   at android.support.v4.app.BackStackRecord.commitInternal(BackStackRecord.java:548)
[ERROR] :  TiApplication:   at android.support.v4.app.BackStackRecord.commit(BackStackRecord.java:532)
[ERROR] :  TiApplication:   at org.appcelerator.titanium.view.TiUIFragment.<init>(TiUIFragment.java:41)
[ERROR] :  TiApplication:   at ti.map.TiUIMapView.<init>(TiUIMapView.java:55)
[ERROR] :  TiApplication:   at ti.map.ViewProxy.createView(ViewProxy.java:63)
[ERROR] :  TiApplication:   at org.appcelerator.titanium.proxy.TiViewProxy.handleGetView(TiViewProxy.java:465)
[ERROR] :  TiApplication:   at org.appcelerator.titanium.proxy.TiViewProxy.getOrCreateView(TiViewProxy.java:451)
[ERROR] :  TiApplication:   at org.appcelerator.titanium.proxy.TiViewProxy.handleAdd(TiViewProxy.java:568)
[ERROR] :  TiApplication:   at org.appcelerator.titanium.proxy.TiViewProxy.handleMessage(TiViewProxy.java:220)
[ERROR] :  TiApplication:   at org.appcelerator.titanium.proxy.TiWindowProxy.handleMessage(TiWindowProxy.java:100)
[ERROR] :  TiApplication:   at ti.modules.titanium.ui.WindowProxy.handleMessage(WindowProxy.java:443)
[ERROR] :  TiApplication:   at android.os.Handler.dispatchMessage(Handler.java:95)
[ERROR] :  TiApplication:   at android.os.Looper.loop(Looper.java:137)
[ERROR] :  TiApplication:   at android.app.ActivityThread.main(ActivityThread.java:5041)
[ERROR] :  TiApplication:   at java.lang.reflect.Method.invokeNative(Native Method)
[ERROR] :  TiApplication:   at java.lang.reflect.Method.invoke(Method.java:511)
[ERROR] :  TiApplication:   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
[ERROR] :  TiApplication:   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
[ERROR] :  TiApplication:   at dalvik.system.NativeStart.main(Native Method)

Viewing all articles
Browse latest Browse all 8068

Trending Articles