android-flip
android-flip copied to clipboard
flash when flipping
hi openaphid team, thank you for provide this wonderful flip library. i am using your library everything fine but when forward flip sometimes backward also occur some flash issue. how ti fix this?
same problem here, anyone have some suggestion to solve it ?
hi OpenAphid,
I am also facing same problem.Please help me on this.
I have encountered the same issue right now Please help me Thanks in advances!
Same for me. Would be awesome to have a fix for that... Thank you for this library anyway, it's pretty cool!
I was fixed this issue by change backgroud of root layout from transparent to white. You can try..
I changed the animationBitmapFormat from RGB_565 to: flip:animationBitmapFormat="ARGB_8888"
Now the flickerings are gone, just sometimes the card's background turns to transparent while flipping
Hi,
I am using your library for display content in my application . When I used to flip the screen after 30-40 flip i am getting Out Of memory error. Did you face this problem already. How can I fix this error.
@loguslm same issue here. How did you solve?
Delay the handler in hideFlipAnimation() 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); }