01-15-2013 10:45 PM
Since a lot of people are able to reproduce this behavior, I guess it is a bug. I think this bug is pretty serious because RIM is expecting BlackBerry 10 users to constantly go in an out of apps, if the user comes back to the app and find the animation broken, it will seriously take away the BlackBerry 10 flow experience.
I have never logged a bug report, or even know how to. Can someone either do it or teach me? It would be fastest if someone from RIM see this thread.
01-15-2013 11:08 PM
01-15-2013 11:14 PM - edited 01-15-2013 11:15 PM
Thanks. I'm going to try and build a test case to reproduce and escalate.
01-16-2013 12:04 AM
Reproduced: on Dev Alpha A running 10.0.09.2320
import bb.cascades 1.0
Page {
Container {
layout: StackLayout {
}
Container {
layout: AbsoluteLayout {
}
preferredHeight: 500
Label {
id: fred
text: "Fred"
}
}
Button {
text: "Dance Freddy DANCE!"
onClicked: {
fred.translationY = 400 - fred.translationY;
}
}
}
}
01-16-2013 09:25 AM
We are also experiencing this bug in our app since the latest SDK update. The transition animations are broken after the app has been minimized once. Only a restart of the app fixes the problem.
I discovered that the bug does NOT occur if "Application.cover" is set like e.g. in the QML Cookbook sample app.
However we have not yet decided whether we prefer to display an app cover or just the default thumbnail view when our app is minimized, so it would be appreciated if this bug could be fixed before the final release of the OS.
01-16-2013 09:54 AM
Good news, this appears fixed on newer (internal) builds. Tested on 2372.
01-16-2013 10:04 AM
01-16-2013 01:24 PM
That is good news.
For our current releases, should we wait for the upcoming SDK build or shall we do the workaround for now?
01-16-2013 01:45 PM
Great!! now I can get back to coding in calm
. Thanks for the info.
01-16-2013 06:16 PM