在我的应用程序中,我正在尝试使用新引入的活动之间的元素共享。如果共享元素具有固定位置(例如android:layout_gravity="top"
),则所有内容都像魅力一样,但问题在视图锚定时出现。
我的第一项活动如下:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/tools"
xmlns:auto="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
...
</android.support.design.widget.AppBarLayout>
<android.support.design.widget.FloatingActionButton
android:id="@+id/play_all"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="24dp"/>
</android.support.design.widget.CoordinatorLayout>
我的第二项活动看起来像这样
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:auto="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:elevation="10dp"
android:src="@drawable/ic_action_play"
auto:layout_anchor="@+id/appbar"
android:transitionName="fab_button"
auto:layout_anchorGravity="bottom|right" />
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="192dp">
...
</android.support.design.widget.AppBarLayout>
...
</android.support.design.widget.CoordinatorLayout>
我使用的代码如下:
Intent intent = ...;
ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(this, view, "fab_button");
startActivity(intent, options.toBundle());
如果我使用layout_anchor
和layout_anchorGravity
属性,则两个FAB之间的转换不会动画完成。如果第二个FAB具有固定位置,则它可以完美地工作。我做错了什么?
答案 0 :(得分:15)
这可能有点迟了,但我找到了解决问题的方法。您必须将共享元素包装到布局中,并将锚点放在该布局上:
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
auto:layout_anchor="@+id/appbar"
auto:layout_anchorGravity="bottom|right">
<android.support.design.widget.FloatingActionButton
android:id="@+id/play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:elevation="10dp"
android:src="@drawable/ic_action_play"
android:transitionName="fab_button" />
<FrameLayout/>
答案 1 :(得分:1)
活动共享元素转换:
按照步骤操作。
我认为你没有遵循第二步。您已在第二个android:transitionName="fab_button"
中提供Activity
但未在第一个Activity
中提供。
XML
的 Activity
(已添加android:transitionName="fab_button"
):
<android.support.design.widget.FloatingActionButton
android:transitionName="fab_button"
android:id="@+id/play_all"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|right"
android:layout_margin="24dp"/>
以上链接可以帮助您。
答案 2 :(得分:0)
您也应该在接收活动中拥有转换名称。检查我的代码。
第一项活动
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@drawable/ic_register"
android:transitionName="@string/transition"/>
</android.support.design.widget.CoordinatorLayout>
和第二个活动xml
<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"
android:fitsSystemWindows="true"
android:transitionName="@string/transition"
tools:context="com.example.shoppingappdemo.RegiserActivity">