Android gridview展开元素动画

时间:2014-09-30 11:31:23

标签: android gridview android-animation

有一些带有一些元素的gridview。当用户按下某个项目时,我会打开包含该项目详细信息的新片段。我想将该过渡动画看起来像被按下的元素扩展到整个屏幕。

enter image description here

Hos有这样的效果吗?

PS。我在YPlan android应用程序中看到了类似的东西。以下是效果视频:http://youtu.be/oGd7wHs6GuA当您点按某个元素时,图像会停留,而下方的所有内容都会发生变化,然后会在动画中停留在屏幕顶部的位置。这不完全是我想要的,但我认为实施应该是类似的。

3 个答案:

答案 0 :(得分:2)

开始新的Activity并提供overridePendingTransition(R.anim.zoom_enter, R.anim.zoom_exit); zoom_enter.xml有

的地方
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/decelerate_interpolator">
<scale android:fromXScale="2.0" android:toXScale="1.0"
       android:fromYScale="2.0" android:toYScale="1.0"
       android:pivotX="50%p" android:pivotY="50%p"
       android:duration="@android:integer/config_mediumAnimTime" />
</set>

和zoom_exit有

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/decelerate_interpolator"
    android:zAdjustment="top">
<scale android:fromXScale="1.0" android:toXScale="2.0"
       android:fromYScale="1.0" android:toYScale="2.0"
       android:pivotX="50%p" android:pivotY="50%p"
       android:duration="@android:integer/config_mediumAnimTime" />
<alpha android:fromAlpha="1.0" android:toAlpha="0"
        android:duration="@android:integer/config_mediumAnimTime"/>
</set>

将这两个文件保存在/ res / anim /文件夹中。

答案 1 :(得分:1)

这称为共享元素活动转换

Example

请注意,共享元素转换需要Android 5.0(API级别21)及更高版本。 您需要做的是提供一个过渡名称,两个Activites都可以使用该过渡名称来创建过渡动画。 要使用共享的过渡名称,您需要为启动意图提供选项Bundle,如下所示:

Intent intent = new Intent(this, DetailsActivity.class);
// Pass data object in the bundle and populate details activity.
intent.putExtra(DetailsActivity.EXTRA_CONTACT, contact);
ActivityOptionsCompat options = ActivityOptionsCompat.
    makeSceneTransitionAnimation(this, (View)ivProfile, "profile");
startActivity(intent, options.toBundle());

以下是针对相同内容的分步教程- https://github.com/codepath/android_guides/wiki/Shared-Element-Activity-Transition  对于https://medium.com/@bherbst/fragment-transitions-with-shared-elements-7c7d71d31cbb

处的片段

答案 2 :(得分:0)

我正在考虑仅为网格设置动画(放大和淡出,同时),当网格全屏时,tren用新的片段动画淡入替换片段。