Android - Как сделать эту анимацию параллакса (см. Анимацию) - PullRequest
0 голосов
/ 30 ноября 2018

У меня есть большие сомнения, как я могу сделать эту анимацию (см. Ниже) в Android?see the gif

Что я пробовал раньше?

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">

    <!--THIS TOOLBAR NEEDS TO BE FIXED ON THE TOP-->
    <!--TO DONT TO BE SCROLLED-->
    <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar_fixed_top"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay"/>

    <android.support.design.widget.AppBarLayout
            android:layout_height="wrap_content"
            android:layout_width="match_parent"
            android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/toolbar_layout"
                android:fitsSystemWindows="true"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:toolbarId="@+id/toolbar"
                app:layout_scrollFlags="scroll|exitUntilCollapsed"
                app:contentScrim="?attr/colorPrimary">

            <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    android:background="?attr/colorPrimary"
                    app:popupTheme="@style/AppTheme.PopupOverlay"/>


            <!--CONTENT OF HEADER BELOW OF TOOLBAR-->
            <android.support.constraint.ConstraintLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">

                <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="Contacts"/>
                <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="12"/>
                <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="Amount"/>
                <TextView
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:text="675.353,45"/>
                <!--CONTENT OF WHITE VIEW HERE-->

            </android.support.constraint.ConstraintLayout>
        </android.support.design.widget.CollapsingToolbarLayout>
    </android.support.design.widget.AppBarLayout>

    <android.support.v4.widget.NestedScrollView
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
        <android.support.constraint.ConstraintLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent">

            <!--CONTENT OF WHITE VIEW HERE-->

        </android.support.constraint.ConstraintLayout>
    </android.support.v4.widget.NestedScrollView>

</android.support.design.widget.CoordinatorLayout>

Но раскладка ломается, потому что вторая Панель инструментов , появляется с большим текстом, и он перебирает мой Заголовок в момент его прокрутки, и даже тогда, когда я делаю эффект прокрутки на странице, похоже, что я всев пределах ScrollView и без эффекта и задержка , как показано на изображении выше.

ПРИМЕЧАНИЕ. Прокрутка не имеет Эффект «блокировки» кнопки, как во время показанного изображения, заключается в том, что я заново анимировал анимацию, чтобы показать, и я не так хорош, поэтому прокрутка происходит естественно, но с задержка в этой части, которая "блокирует"

...