CollapsingToolbarLayout在滚动时将自定义文本移到中心

时间:2018-08-30 02:22:59

标签: android android-toolbar android-coordinatorlayout

我的布局应如下所示:

enter image description here

我需要解决一些问题:

  • 约束布局(下周,购物文字)应位于工具栏的底部。
  • 滚动完成后,标题文本Next week可以平滑移动到工具栏的中央
  • 水平进度条位于constraintLayout的底部
  • 滚动时需要固定水平进度条

这是我尝试过的:

enter image description here

我的布局:

 <androidx.coordinatorlayout.widget.CoordinatorLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:descendantFocusability="beforeDescendants"
    android:fitsSystemWindows="true"
    android:focusable="true"
    android:focusableInTouchMode="true">

    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/appBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true">

        <com.google.android.material.appbar.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

            <androidx.appcompat.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                app:layout_collapseMode="pin" />

            <!-- has a margin top with tool bar height-->
            <androidx.constraintlayout.widget.ConstraintLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom"
                android:layout_marginTop="?attr/actionBarSize"
                android:paddingLeft="@dimen/item_pad"
                android:paddingRight="@dimen/item_pad"
                app:layout_collapseMode="parallax">

                <TextView
                    android:id="@+id/tvTitle"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/next_week"
                    android:textSize="@dimen/text_medium"
                    app:fontFamily="@font/averta_semi_bold"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="parent" />

                <TextView
                    android:id="@+id/tvShoppingList"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="@string/shopping_list"
                    android:textColor="@color/black"
                    android:textSize="@dimen/text_huge_x"
                    app:fontFamily="@font/averta_bold"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toBottomOf="@+id/tvTitle" />

                <ImageView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:tint="@color/main"
                    app:layout_constraintBottom_toBottomOf="@+id/tvShoppingList"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintTop_toTopOf="@+id/tvShoppingList"
                    app:srcCompat="@drawable/ic_add" />


            </androidx.constraintlayout.widget.ConstraintLayout>

            <ProgressBar
                android:id="@+id/progressShopping"
                style="?android:attr/progressBarStyleHorizontal"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom" />
        </com.google.android.material.appbar.CollapsingToolbarLayout>
    </com.google.android.material.appbar.AppBarLayout>


    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior">

        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rvShopping"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    </FrameLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout> 

我该如何解决以上问题?

1 个答案:

答案 0 :(得分:2)

1)在约束布局的顶部添加48dp(工具栏高度)的填充(或边距)

 android:paddingTop="48dp"

2)将偏移更改的侦听器添加到AppBarLayout,并根据可见的AppBar的verticalOffset转换textView“下周”。

 appBarLayout.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() {
        @Override
        public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) {
        //Depending on the vertical offset of the AppBarLayout, change the translateY of the textView "Next Week" until it is zero by the time the AppBarLayout is fully collapsed.           
       }
   });

3)和4)将RecyclerView容器布局更改为LinearLayout,并将水平进度栏视图置于Recyler视图上方,以便即使在应用栏完全折叠后也可以固定在顶部。