cancel
Showing results for 
Search instead for 
Did you mean: 

HWC on Android

Former Member
0 Kudos

Hello,

i have the issue that every time i click a screen in my HWC App, the app skips sometimes a screen. On bb or wm6.5 is everything fine. On an android device i klick on an item in a list, and it jumps on the detailpage, an then instant on the next page without touching the screen again.

do you have an idea what this could be?

regards

jk

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hello,

I found an workaround for this. Who also faces this Problem is invitet to use it.

Just add to "customBeforeNavigateForward" this code with your DIV of the destination page.

    if((screenKey == "screenFROMDIV") && (destScreenKey == "screenDESTDIV")) {   

        $('#destinationScreenDiv').hide();

    }

And add to "customAfterNavigateForward" this code whith your DIV of the destination page

     if((screenKey == "screenFROMDIV") && (destScreenKey == "screenDESTDIV")) { 

        $('#DestinationScreenDiv').show("slow");

    }

It simply runs the show animation with a duration of 600ms which is enough so that the elements on the next page are not triggerd.

midhun_vp
Active Contributor
0 Kudos

I am also facing this issue. I think its a bug in SUP.

Regards

Midhun

Former Member
0 Kudos

I have this issue in my HWC apps, any idea how to fix?

Regards

Former Member
0 Kudos

I have seen it happen as well and would like to know what is causing this odd behavior.