我想使用 Android Lollipop 的新 Activity Transitions。但目前我在动画中看到了非常奇怪的打嗝。我拼凑了我能想到的最小的样本。
这是我在一个非常简短的版本中所做的:
- 在我的启用窗口内容转换
styles.xml
slide.xml
以我的风格引用了一个非常简单的退出过渡android:transitionName
为两种布局中的共享元素提供了一个ActivityOptions.makeSceneTransitionAnimation()
用那个名字和我想分享的视图调用- 将生成的捆绑包传递给
startActivity()
这是我看到的行为(尝试将动画速度降低 10 倍以了解我的意思):就在幻灯片动画滑下未共享的视图之前,这些视图向下跳了一下。他们实际上分开了一点。
但是:这只发生在我第二次运行该动画时(以及之后的每次)。第一遍看起来还不错。而且只有当我想与下一个活动共享一个元素时才会发生这种情况。如果我不尝试共享元素,一切正常。
这是我的代码:
值/样式.xml
<resources>
<style name="AppTheme" parent="android:Theme.Material.Light">
<!-- enable window content transitions -->
<item name="android:windowContentTransitions">true</item>
<!-- specify exit transition -->
<item name="android:windowExitTransition">@transition/slide</item>
</style>
</resources>
过渡/幻灯片.xml
<slide />
主要活动的布局
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#0000ff" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#00ff00" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#0000ff" />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#00ff00" />
</LinearLayout>
<!-- the actual element I want to share -->
<View
android:id="@+id/view"
android:layout_width="56dp"
android:layout_height="56dp"
android:background="#ff0000"
android:elevation="8dp"
android:transitionName="view" />
</RelativeLayout>
MainActivity.java
public class MainActivity extends Activity implements View.OnClickListener {
View mView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mView = findViewById(R.id.view);
mView.setOnClickListener(this);
}
@Override
public void onClick(View view) {
ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(this, mView, "view");
Intent intent = new Intent(this, SecondaryActivity.class);
startActivity(intent, options.toBundle());
}
}