Android: openaphid/android flip white flashes issue

268 views Asked by At

I am using openaphid flipview library for flipping animation in my application. Everything is working fine but there is a white flash coming when I flip forward. Backwards is working fine. I think no support is now available from the developers. Has anyone fixed this issue?

I already tried everything mentioned in this link but nothing works

1

There are 1 answers

1
Faraz Hussain On BEST ANSWER

OK.Somewhat fixed the issue. Will post it here. Delay the handler in hideFlipAnimation() method and it somewhat fixes the flash issue. Not a very clean approach but works for now until a more stable fix is found.

private void hideFlipAnimation() {
if (inFlipAnimation) {
  inFlipAnimation = false;

  updateVisibleView(bufferIndex);

  if (onViewFlipListener != null) {
    onViewFlipListener.onViewFlipped(bufferedViews.get(bufferIndex), adapterIndex);
  }

  handler.postDelayed(new Runnable() {
    public void run() {
      if (!inFlipAnimation) {
        cards.setVisible(false);
        surfaceView.requestRender(); //ask OpenGL to clear its display
      }
    }
  },200);
}

}