1

I need to edit harism's project about page curl to make pages turns from left to right instead of right to left.

From where should I start?

sth
  • 222,467
  • 53
  • 283
  • 367
Bayan
  • 283
  • 4
  • 14
  • How did you resolve this issue , can you help me with the same. I want to curl page from left to right but the issue i am facing is regarding the right image at the right index this is not happening – Prateek May 27 '13 at 13:37

2 Answers2

3

Your requirement is same with me, I have modify Curl Page from harism to fit it. thanks to harism and I hope harism can make official patch. Curl Page From Left to Right while view mode set to SHOW_ONE_PAGE:

Community
  • 1
  • 1
dreamfighter
  • 111
  • 5
1

Can't you set the current index to the last position and swipe back to first?

mPageProvider= new PageProvider();
mCurlView = (CurlView) findViewById(R.id.curl);
mCurlView.setPageProvider(mPageProvider);
mCurlView.setSizeChangedObserver(new SizeChangedObserver());
mCurlView.setCurrentIndex(index);
mCurlView.setBackgroundColor(0xFF202830);

mCurlView.setCurrentIndex(mPageProvider.mBitmapIds.length);
Mohammed Azharuddin Shaikh
  • 41,633
  • 14
  • 96
  • 115
  • thanks hotveryspicy , but you may understand me wrongly , what I mean is that I want to make the pages fliping animation from left to right (imagen yourself read an Aarabic book) – Bayan Jun 04 '12 at 12:54
  • @hotveryspicy please look at the above thread I got stuck in here, guess you may give me an idea to proceed. – Prateek May 28 '13 at 07:42
  • can any one send me the code for left to right curl page animation...thanks my email is sardarkhan299@gmail.com – Sardar Khan Jan 24 '17 at 16:16