Search in sources :

Example 1 with WoWoPathAnimation

use of com.nightonke.wowoviewpager.WoWoPathAnimation in project WoWoViewPager by Nightonke.

the class AppIntroExampleActivity method setPath.

private void setPath() {
    WoWoPathView pathView = (WoWoPathView) findViewById(R.id.pathview);
    ViewGroup.LayoutParams layoutParams = pathView.getLayoutParams();
    layoutParams.height = screenH;
    layoutParams.width = screenW + 200;
    pathView.setLayoutParams(layoutParams);
    int xoff = -300;
    int yoff = screenH - 616 - 300;
    float xScale = 1.5f;
    float yScale = 1;
    Path path = new Path();
    path.moveTo(xScale * (565 + xoff), screenH + yoff);
    path.cubicTo(xScale * (509 + xoff), yScale * (385 + yoff), xScale * (144 + xoff), yScale * (272 + yoff), xScale * (394 + xoff), yScale * (144 + yoff));
    path.cubicTo(xScale * (477 + xoff), yScale * (99 + yoff), xScale * (596 + xoff), yScale * (91 + yoff), xScale * (697 + xoff), yScale * (128 + yoff));
    path.cubicTo(xScale * (850 + xoff), yScale * (189 + yoff), xScale * (803 + xoff), yScale * (324 + yoff), xScale * (66 + xoff), yScale * (307 + yoff));
    pathView.setPath(path);
    ViewAnimation animation = new ViewAnimation(pathView);
    animation.addPageAnimaition(new WoWoPathAnimation(1, 0f, 1f, EaseType.Linear, true));
    animation.addPageAnimaition(new WoWoAlphaAnimation(2, 0, 1, 1, 0, EaseType.Linear, true));
    animation.addPageAnimaition(new WoWoTranslationAnimation(2, 0, 1, 0, 0, -screenW, 0, EaseType.Linear, true));
    wowo.addAnimation(animation);
}
Also used : Path(android.graphics.Path) WoWoPathView(com.nightonke.wowoviewpager.WoWoPathView) ViewAnimation(com.nightonke.wowoviewpager.ViewAnimation) WoWoPathAnimation(com.nightonke.wowoviewpager.WoWoPathAnimation) ViewGroup(android.view.ViewGroup) WoWoTranslationAnimation(com.nightonke.wowoviewpager.WoWoTranslationAnimation) WoWoAlphaAnimation(com.nightonke.wowoviewpager.WoWoAlphaAnimation)

Example 2 with WoWoPathAnimation

use of com.nightonke.wowoviewpager.WoWoPathAnimation in project WoWoViewPager by Nightonke.

the class WoWoPathAnimationActivity method setPath.

private void setPath() {
    WoWoPathView pathView = (WoWoPathView) findViewById(R.id.pathview);
    ViewGroup.LayoutParams layoutParams = pathView.getLayoutParams();
    layoutParams.height = screenH;
    // set the pathView a little wider,
    // then the airplane can hide
    layoutParams.width = screenW + 200;
    pathView.setLayoutParams(layoutParams);
    // use this to adjust the path
    int xoff = -300;
    int yoff = screenH - 616 - 300;
    float xScale = 1.5f;
    float yScale = 1;
    Path path = new Path();
    path.moveTo(xScale * (565 + xoff), screenH + yoff);
    path.cubicTo(xScale * (509 + xoff), yScale * (385 + yoff), xScale * (144 + xoff), yScale * (272 + yoff), xScale * (394 + xoff), yScale * (144 + yoff));
    path.cubicTo(xScale * (477 + xoff), yScale * (99 + yoff), xScale * (596 + xoff), yScale * (91 + yoff), xScale * (697 + xoff), yScale * (128 + yoff));
    path.cubicTo(xScale * (850 + xoff), yScale * (189 + yoff), xScale * (803 + xoff), yScale * (324 + yoff), xScale * (66 + xoff), yScale * (307 + yoff));
    // set the path to pathView
    pathView.setPath(path);
    ViewAnimation animation = new ViewAnimation(pathView);
    animation.addPageAnimaition(new WoWoPathAnimation(0, 0f, 1f, easeType, useSameEaseTypeBack));
    wowo.addAnimation(animation);
}
Also used : Path(android.graphics.Path) WoWoPathView(com.nightonke.wowoviewpager.WoWoPathView) ViewAnimation(com.nightonke.wowoviewpager.ViewAnimation) WoWoPathAnimation(com.nightonke.wowoviewpager.WoWoPathAnimation) ViewGroup(android.view.ViewGroup)

Example 3 with WoWoPathAnimation

use of com.nightonke.wowoviewpager.WoWoPathAnimation in project WoWoViewPager by Nightonke.

the class CVExampleActivity method setPath.

private void setPath() {
    WoWoPathView pathView = (WoWoPathView) findViewById(R.id.pathview);
    ViewGroup.LayoutParams layoutParams = pathView.getLayoutParams();
    layoutParams.height = screenH;
    layoutParams.width = screenW;
    pathView.setLayoutParams(layoutParams);
    int xoff = 0;
    int yoff = screenH - 576 - 100;
    float xScale = 1f;
    float yScale = 1;
    Path path = new Path();
    path.moveTo(xScale * (screenW + xoff + 50), 167 + yoff);
    path.cubicTo(xScale * (654 + xoff), yScale * (492 + yoff), xScale * (336 + xoff), yScale * (583 + yoff), xScale * (-150 + xoff), yScale * (576 + yoff));
    pathView.setPath(path);
    ViewAnimation animation = new ViewAnimation(pathView);
    animation.addPageAnimaition(new WoWoPathAnimation(1, 0f, 1f, EaseType.Linear, true));
    wowo.addAnimation(animation);
}
Also used : Path(android.graphics.Path) WoWoPathView(com.nightonke.wowoviewpager.WoWoPathView) ViewAnimation(com.nightonke.wowoviewpager.ViewAnimation) WoWoPathAnimation(com.nightonke.wowoviewpager.WoWoPathAnimation) ViewGroup(android.view.ViewGroup)

Aggregations

Path (android.graphics.Path)3 ViewGroup (android.view.ViewGroup)3 ViewAnimation (com.nightonke.wowoviewpager.ViewAnimation)3 WoWoPathAnimation (com.nightonke.wowoviewpager.WoWoPathAnimation)3 WoWoPathView (com.nightonke.wowoviewpager.WoWoPathView)3 WoWoAlphaAnimation (com.nightonke.wowoviewpager.WoWoAlphaAnimation)1 WoWoTranslationAnimation (com.nightonke.wowoviewpager.WoWoTranslationAnimation)1