1. #1
    Sencha User Ola GP's Avatar
    Join Date
    Jan 2013
    Location
    Sweden
    Posts
    25
    Vote Rating
    1
    Ola GP is on a distinguished road

      0  

    Default App don't start on low end phone (Android 2.3)

    App don't start on low end phone (Android 2.3)


    Writing this down if someone else have a similar problem.

    Problem:
    On a low end mobile phone (Samsung GT-S5660, Android 2.3) an app I developed didn't start completely. The Tab Panel showed but all the views didn't contained any data. The app wasn't completely initialized.

    Solution:
    In my understanding this low end mobile phone couldn't handle all initialization at the same time. I had to wait until all the stores had completed loading all data, before all views where displayed.

    Example code:

    Code:
        launch: function() {
        	allStores = this.getStores();
        	var loadTimer = setInterval(function(){
        		for (var i in allStores) {
        			if (allStores[i].loaded !== true) { return; }
        		}
        		
        		clearInterval(loadTimer);
        		launchTheApp();
        	}, 50);
        	
        	
        	function launchTheApp() {
        		// Destroy the #appLoadingIndicator element
        		Ext.fly('appLoadingIndicator').destroy();
           		
        		Ext.Viewport.add(Ext.create('Ext.TabPanel', {        
    	            tabBarPosition: 'bottom',
    	            items: [
    	                { 
    	                	xclass: 'App.view.Card1'
    	                },
    	                { 
    	                	xclass: 'App.view.Card2'
    	                },
    	                {
    	                	xclass: 'App.view.Card3'
    	                }
    	            ]
    	        }));
        	}
            
        }

  2. #2
    Sencha - Senior Forum Manager mitchellsimoens's Avatar
    Join Date
    Mar 2007
    Location
    St. Louis, MO
    Posts
    33,599
    Vote Rating
    434
    mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of mitchellsimoens has much to be proud of

      0  

    Default


    Thanks for sharing how you overcame the issue. This may come in handy for others
    Mitchell Simoens @SenchaMitch
    Sencha Inc, Senior Forum Manager
    ________________
    http://www.JSONPLint.com - Source to lint your JSONP!

    Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
    https://github.com/mitchellsimoens

    Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/

    Need more help with your app? Hire Sencha Services services@sencha.com

    Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!

    When posting code, please use BBCode's CODE tags.

Tags for this Thread