I am working with a designer for the first time.
And he wants me to implement this complex screen transition.
The current Screen doesn't move. But the new screen come from the right side and then it is stacked.
The problem is this. The ImageView which is animation must run in all the screens continuously(no move) and repeat the animation. So, when the new screen comes from the right side. The ImageView must be alive. But the rest are hidden by the new screen.
At first, I thought I need to make MainActivity
which has screen star animation
with white or transparent background. And then, use half-transparent background color(pink) for the fragments.
However, I checked the video that designer sent me. And I found out that the texts and images, buttons are hidden and just the star keeps moving.
The way I am implementing is totally wrong because you can see everything in the previous screen, not only the star but also the texts and buttons and also the color becomes thicker.
How can I solve this problem?
Well, It's kind of difficult feature to implement.
You can use FrameLayout or just put the view as the most front view with half transparency(maybe around 15% opacity).
Then, it looks like it's behind of all the views.