Results 39 comments of Bo

The best approach is to make FlipView support `getViewTypeCount()` and cache views according to their view types. But I'm afraid I'm not available to make it real in these days

I also found out that flipping in Flipboard could also be over sensitive. I'll try to improve it later

I was lazy and used a naive mechanism to start animation in `showFlipAnimation()` of `FlipViewController`. https://github.com/openaphid/android-flip/blob/master/FlipView/FlipLibrary/src/com/aphidmobile/flip/FlipViewController.java#L497 Flickers happen when 100ms is not enough for the controller to build animations. I...

I've pushed a change in develop branch. I won't claim it can eliminate flicker entirely, but please let me know if it helps reduce flashing in your app.

Reopened, will push a fix in develop branch soon

The push 2dca94e should have fix the flash issue, but it also introduces a minor issue when flip backward on the first page. I'll publish a fix later today.

Thanks for your report, it seems my previous fix is not perfect yet.

I've finished another fix in the develop branch to address the issue. Please try it on your device. Thanks in advance.

We should keep the old texture for rendering until the new texture is ready. I'll fix it in next version

UIKit is an Obj-C framework, any internal implementation can be hidden from pubic headers. Although the existence of `-[UIView awakeFromNib]` can be confirmed via Obj-C runtime API, it's not future...