Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Harism android Page Curl

I am using harism android page curl.It works brilliantly. My app works in landscape mode and I want to start with an open book. As I am working in landscape mode the framework automatically set

SHOW_TWO_PAGES

property.

Now when the app begins on right side I can see PAGE0.PNG, which is my first page of the book, and on left side its blank space.

Instead I want PAGE0.PNG on left hand side and PAGE1.PNG on right hand side. How can I accomplish this?

like image 335
Zach Avatar asked Aug 17 '13 21:08

Zach


1 Answers

This can be done by adding, mCurlView.setCurrentIndex(1); to the SizeChangedObserver class in the CurlActivity.

See this,

private class SizeChangedObserver implements CurlView.SizeChangedObserver {
    @Override
    public void onSizeChanged(int w, int h) {
        if (w > h) {
            mCurlView.setViewMode(CurlView.SHOW_TWO_PAGES);
            mCurlView.setMargins(.1f, .05f, .1f, .05f);
            mCurlView.setCurrentIndex(1);  //--- Add this line.. 
        } else {
            mCurlView.setViewMode(CurlView.SHOW_ONE_PAGE);
            mCurlView.setMargins(.1f, .1f, .1f, .1f);
        }
    }
}
like image 85
Andro Selva Avatar answered Oct 07 '22 21:10

Andro Selva