android-FlipView icon indicating copy to clipboard operation
android-FlipView copied to clipboard

Manage orientation using java code.

Open Pkaran01 opened this issue 9 years ago • 1 comments

Hi First of your lib is very good. i used this https://github.com/openaphid/android-flip but there is lot's of bug. Yesterday i shifted to your lib, it is very compatible with my requirement. only one thing is left. how to manage flip orientation from java code. bcoz i want to give your control to change orientation as per is flexibility.

Pkaran01 avatar Dec 25 '15 07:12 Pkaran01

I did it. I have added method in FlipView.java

public void setOrientation(int orientation) { mIsFlippingVertically = ((orientation== 0) ? true : false); }

Pkaran01 avatar Dec 28 '15 18:12 Pkaran01