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 building my Android application though phonegap. I'm using phonegap-1.2.0.js.

I have below code for back button.

       document.addEventListener("deviceready", onDeviceReady, false);

       function onDeviceReady() {
            document.addEventListener("backbutton", handleBackButton, false);
        }

        function handleBackButton() {
                // Code Goes here
        } 

This back button code works on some pages, but on other pages it's providing error like

Can't open keycharmap file
Error loading keycharmap file '/system/usr/keychars/AT42QT602240_Touchscreen.kcm.bin'. hw.keyboards.65538.devname='AT42QT602240 Touchscreen'
Using default keymap: /system/usr/keychars/qwerty.kcm.bin
JSCallback Error: Request failed.
file:///android_asset/www/assets/js/phonegap-1.2.0.js: Line 868 : JSCallback Error: Request failed. 

Because of above error i'm unable to go back.

Anyone have idea??

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.