Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm creating an Android app with Phonegap that scales a landscape fixed-width HTML5 canvas to fit the screen. This is my viewport, activity manifest and part of the activity class that deals with scaling:

<meta name="viewport" content="width=800, height=480, initial-scale=1, user-scalable=yes" />

 <activity android:name="Name" android:label="@string/app_name"
                android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale"
                  android:screenOrientation="landscape">

// set the scale
globalScale = Math.ceil( ( width / ORIG_APP_W ) * 100 );
this.appView.setInitialScale( (int)globalScale );

The problem I'm having comes when the app is suspended by either pressing the power or back buttons. When I return to the app, it has lost it's scaling and appears fully zoomed in. Worse though, is that my canvas appears to be drawn on top of another static instance of the same canvas.

For some reason, there's no problem when the app is set to portrait orientation. This makes me think that suspending the app fires off an resize event that breaks the scale and drawing of the canvas.

If this is the case, can all resize events be overridden to fix this? Or is there a better way to come at this to avoid the issue?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.