0

I am developing a demo using harism page curl https://github.com/harism/android_page_curl . Now I want to change the white color which is visible when I curl a page, means white color which is at back side of each page. Can anybody tell me how can I do that. Thanks in advance.

Kara
  • 6,115
  • 16
  • 50
  • 57
rahul
  • 2,613
  • 8
  • 32
  • 55

2 Answers2

2

use like dat........

    mAnimationHandler = new FlipAnimationHandler();

    // Create our edge paint
    mCurlEdgePaint = new Paint();
    mCurlEdgePaint.setColor(Color.CYAN);
    mCurlEdgePaint.setAntiAlias(true);
    mCurlEdgePaint.setStyle(Paint.Style.FILL);
    mCurlEdgePaint.setShadowLayer(10, -5, 5, 0x99000000);
GB_Bhayani ツ
  • 368
  • 1
  • 20
1

Try This,

page.setColor(Color.rgb(255, 190, 150), CurlPage.SIDE_BACK);