在工具栏上设置animateLayoutChanges时,它可以很好地使标题更改和后退按钮外观具有动画效果。但是,按返回按钮时,工具栏的标题不会返回其原始位置。可以在下面的图片中看到。
您知道解决此问题的任何方法吗?使用导航组件时,是否可以在工具栏内手动设置元素动画?
布局文件:
<androidx.coordinatorlayout.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=".ui.startScreen.MainActivity">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:animateLayoutChanges="true"
android:id="@+id/toolbar"
app:title="My Workout"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay"
app:layout_scrollFlags="scroll|enterAlways"
app:layout_collapseMode="pin" />
</com.google.android.material.appbar.AppBarLayout>
<include
layout="@layout/content_main"
android:id="@+id/include"/>
下面的GIF仅播放一次,可能需要重新加载页面才能观看动画。