简体   繁体   中英

how to achieve this kind of animation in android?

忙碌的猫

tried animations for a cardview in horizontal recycler view, but no luck!!!!

private Animation inFromTopAnimation() {
        Animation inFromTop = new TranslateAnimation(
                Animation.RELATIVE_TO_PARENT, 0.0f,
                Animation.RELATIVE_TO_PARENT, 0.0f,
                Animation.RELATIVE_TO_PARENT, -1.0f,
                Animation.RELATIVE_TO_PARENT, 0.0f);
        inFromTop.setDuration(500);
        inFromTop.setInterpolator(new AccelerateInterpolator());
        return inFromTop;
    }

I got the solution for the question, which is similar. https://github.com/Cleveroad/FanLayoutManager

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM