Drawer Drawer Curtain Animation

I recently stumbled upon the Morning Routine app , which loaded great animations. The one I'm stuck with is the curtain animation used on the Sliding drawer.

What it looks like:

animation

Does anyone know how to achieve this animation? Using the FoldingLayout library is not smooth enough to reach it, and thatโ€™s completely different.

+4
source share
2 answers

As already posted in the comment, there is a remote answer for this related question:

github: http://github.com/7heaven/bitmapMesh.

, , , , . :

enter image description here

+7

, :

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
    <cheesebaron.folding.FoldingLayout
        android:id="@+id/fold_view"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1">
         <!-- put you curtain layouts here, listview e.t.c -->
    </cheesebaron.folding.FoldingLayout>

    <!-- put any other layouts here -->

</LinearLayout>

, .

0

All Articles