You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When navigating between screens in the app, there are "residual" artifacts from the previous screens that remain visible. They look like pale shadows. I noticed the same artifacts when using Onyx demo app.
Inside your tutorial app, if I go to Epd Demo screen and click on "Full Update", the screen refreshes and the artifacts from previous screens are deleted. Inside the code, I traced the execution path to this code inside EpdDemoActivity:
} else if (v.equals(button_screen_refresh)) {
updateTextView();
EpdController.repaintEveryThing(UpdateMode.GC);
}
So, I thought that a call to EpdController.repaintEveryThing(UpdateMode.GC) should do the trick in my app as well, but it wasn't the case. As far as I can see, this call has no effect at all.
I'm not sure how come the same API call works in one app, but doesn't work in another. I use exactly the same versions of SDKs:
When navigating between screens in the app, there are "residual" artifacts from the previous screens that remain visible. They look like pale shadows. I noticed the same artifacts when using Onyx demo app.
Inside your tutorial app, if I go to Epd Demo screen and click on "Full Update", the screen refreshes and the artifacts from previous screens are deleted. Inside the code, I traced the execution path to this code inside EpdDemoActivity:
So, I thought that a call to
EpdController.repaintEveryThing(UpdateMode.GC)
should do the trick in my app as well, but it wasn't the case. As far as I can see, this call has no effect at all.I'm not sure how come the same API call works in one app, but doesn't work in another. I use exactly the same versions of SDKs:
So, how do I repaint the screen and remove "residual" artifacts in my app?
The text was updated successfully, but these errors were encountered: