欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Android中Activity过渡动画的实例讲解

程序员文章站 2022-06-18 13:17:30
目录前言分解动画效果视频解析滑动动画效果视频解析淡出动画效果视频解析共享元素共享单个元素解析共享多个元素效果视频全部代码总结前言以前activty之间得跳转非常生硬,自android.5x后,goog...

前言

以前activty之间得跳转非常生硬,自android.5x后,google对activity的切换设计更多丰富的动画效果。

android 5.x提供了三种transition类型,具体如下:

✧进入:一个进人的过渡动画决定activity中的所有的视图怎么进入屏幕。

✧退出:一个退出的过渡动画决定-个activity 中的所有视图怎么退出屏幕。

✧共享元素:一个共享元素过渡动画决定两个activities 之间的过渡,怎么共享它们的视图。

进入和退出动画效果包括如下三种

✧explode (分解)——从屏幕中间进或出,移动视图

✧slide (滑动) ——从屏 幕边缘进或出,移动视图

✧fade(淡出)——通过改变屏幕上的视图的不透明度达到添加或者移除视图

共享元素包括:

✧changebounds——改变目标视图的布局边界

✧changeclipbounds——裁剪目标视图边界

✧changetransform——改变目标规图的编放比例和能转角度

✧changelmagtransfom——改空目标图片的大小和缩放比例

分解动画

效果视频

Android中Activity过渡动画的实例讲解

解析

分解动画的进场动画为上下向中间挤压,退出动画为上下向外散开

通过在跳转activity的时候使用activityoptions.makescenetransitionanimation( this ).tobundle()方法进行动画声明,

startactivity( intent, activityoptions.makescenetransitionanimation( this ).tobundle() );

然后再另外一个activity设置动画效果,分解动画进场与退出代码如下

进场效果代码如下

getwindow().setentertransition( new explode(  ) );

退场效果代码如下

getwindow().setexittransition( new explode(  ) );

全部代码在文章底部会全部贴出

全部代码在文章底部会全部贴出

全部代码在文章底部会全部贴出

滑动动画

效果视频

 Android中Activity过渡动画的实例讲解

解析

滑动动画的进场动画为逐渐向上进入,退出动画为逐渐向下退出
通过在跳转activity的时候使用activityoptions.makescenetransitionanimation( this ).tobundle()方法进行动画声明,

startactivity( intent, activityoptions.makescenetransitionanimation( this ).tobundle() );

然后再另外一个activity设置动画效果,进场与退出代码如下

进场效果代码如下

 getwindow().setentertransition( new slide(  ) );

退场效果代码如下

 getwindow().setexittransition( new slide(  ) );

全部代码在文章底部会全部贴出

全部代码在文章底部会全部贴出

全部代码在文章底部会全部贴出

淡出动画

效果视频

Android中Activity过渡动画的实例讲解

解析

谈话动画的进场动画为由虚到实,由浅到深,退出动画则相反
通过在跳转activity的时候使用activityoptions.makescenetransitionanimation( this ).tobundle()方法进行动画声明,

startactivity( intent, activityoptions.makescenetransitionanimation( this ).tobundle() );

然后再另外一个activity设置动画效果,进场与退出代码如下

进场效果代码如下

 getwindow().setentertransition( new fade(  ) );

退场效果代码如下

   getwindow().setexittransition( new fade(  ) );

全部代码在文章底部会全部贴出

全部代码在文章底部会全部贴出

全部代码在文章底部会全部贴出

共享元素

共享单个元素

效果视频

Android中Activity过渡动画的实例讲解

解析

共享元素需要再xml布局文件中绑定一个相同的名称,例如再进场的activity xml布局文件中的 android:transitionname="“属性为share1,那么再另外一个activity 的xml布局文件中 android:transitionname=”"属性也应该设置为share1,保持一致

 <button
        android:id="@+id/share1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="share1"
        android:transitionname="share1"
        android:layout_gravity="center"/>

设置完布局文件中的属性之后,我们再activiy中设置如下代码,其中share1是我们申明的button控件的定义share1 = findviewbyid( r.id.share1 );

其中字符串"share1"为我们在xml文件定义的属性名称

startactivity( intent, activityoptions.makescenetransitionanimation( this, pair.create( (view)share1,"share1" )).tobundle() );

在第一个activity中设置完成之后,我们需要在跳转之后的activity进行接收,如上面所述,需要在xml布局文件中 android:transitionname=""属性设置为share1,代码如图所示

Android中Activity过渡动画的实例讲解

<imageview
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="3"
    android:src="@drawable/sky"
    android:transitionname="share1"
    android:scaletype="fitxy"/>

绑定相同属性之后,我们就无需在activity进行任何设置,即可看到效果

共享多个元素

效果视频

Android中Activity过渡动画的实例讲解

多个元素共享与单个元素共享原理一样,在第一个activity需要定义多个不同的名称进行绑定,此处以两个为例

<button
        android:id="@+id/share1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="share1"
        android:transitionname="share1"
        android:layout_gravity="center"/>
    <button
        android:id="@+id/share2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="share2"
        android:transitionname="share2"
        android:layout_gravity="center"/>

然后再activity中进行属性传递

  /*共享多个元素*/
 startactivity( intent, activityoptions.makescenetransitionanimation( this, pair.create( (view)share1,"share1" ), pair.create( (view)share2,"share2" )).tobundle() );

然后,统一再另外一个activty的xml布局文件设置相对应的属性名称

<imageview
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="3"
    android:src="@drawable/sky"
    android:transitionname="share1"
    android:scaletype="fitxy"/>

<imageview
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="3"
        android:src="@drawable/ground"
        android:transitionname="share2"
        android:scaletype="fitxy"/>

全部代码

第一个activity xml布局文件代码

<?xml version="1.0" encoding="utf-8"?>
<linearlayout 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:orientation="vertical"
    tools:context=".mainactivity"
    android:background="#cc00cc"
    >

    <button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="explode"
        android:onclick="explode"
        android:layout_gravity="center"/>
    <button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="slide"
        android:onclick="slide"
        android:layout_gravity="center"/>
    <button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="fade"
        android:onclick="fade"
        android:layout_gravity="center"/>
    <button
        android:id="@+id/share1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="share1"
        android:transitionname="share1"
        android:layout_gravity="center"/>
    <button
        android:id="@+id/share2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="share2"
        android:transitionname="share2"
        android:layout_gravity="center"/>
    <button
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:text="singleshare"
        android:textallcaps="false"
        android:onclick="singleshare"
        android:layout_gravity="center"/>
    <button
        android:layout_width="100dp"
        android:layout_height="50dp"
        android:text="multshare"
        android:textallcaps="false"
        android:onclick="multshare"
        android:layout_gravity="center"/>

</linearlayout>

第一个activity 代码

public class mainactivity extends appcompatactivity {
    private button share1,share2;
    private intent intent;

    @override
    protected void oncreate(bundle savedinstancestate) {
        super.oncreate( savedinstancestate );
        setcontentview( r.layout.activity_main );
        share1 = findviewbyid( r.id.share1 );
        share2 = findviewbyid( r.id.share2 );
    }

    public void explode(view view) {
        returnactivity(0);
    }

    public void slide(view view) {
        returnactivity(1);
    }

    public void fade(view view) {
        returnactivity(2);
    }
    public void singleshare(view view) {
        returnactivity(3);
    }
    public void multshare(view view) {
        returnactivity(4);
    }

    private void returnactivity(int num){
        intent = new intent( this, transitionactivity.class);
        switch (num){
            case 0:
                intent.putextra( "flag",0 );
                break;
            case 1:
                intent.putextra( "flag",1 );
                break;
            case 2:
                intent.putextra( "flag",2 );
                break;
            case 3:

            case 4:
                intent.putextra( "flag",3 );
                break;
        }
        if (num < 3){
            startactivity( intent, activityoptions.makescenetransitionanimation( this ).tobundle() );
        }else if (num == 3){
            /*共享单个元素*/
            startactivity( intent, activityoptions.makescenetransitionanimation( this, pair.create( (view)share1,"share1" )).tobundle() );
        }else {
            /*共享多个元素*/
            startactivity( intent, activityoptions.makescenetransitionanimation( this, pair.create( (view)share1,"share1" ), pair.create( (view)share2,"share2" )).tobundle() );
        }
    }

}

第二个activity xml布局文件代码

<?xml version="1.0" encoding="utf-8"?>
<linearlayout 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:orientation="vertical"
    tools:context=".transitionactivity">
<imageview
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="3"
    android:src="@drawable/sky"
    android:transitionname="share1"
    android:scaletype="fitxy"/>
    <button
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:layout_gravity="center"/>
    <imageview
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="3"
        android:src="@drawable/ground"
        android:transitionname="share2"
        android:scaletype="fitxy"/>
</linearlayout>

第二个activity 代码

在第二个activity设置getwindow().requestfeature( window.feature_content_transitions );标识符,即可设置动画效果

public class transitionactivity extends appcompatactivity {

    @override
    protected void oncreate(bundle savedinstancestate) {
        super.oncreate( savedinstancestate );
        getwindow().requestfeature( window.feature_content_transitions );
        int flag = getintent().getextras().getint( "flag" );
        switch (flag){
            case 0:
                getwindow().setentertransition( new explode(  ) );
                getwindow().setexittransition( new explode(  ) );
                break;
            case 1:
                getwindow().setentertransition( new slide(  ) );
                getwindow().setexittransition( new slide(  ) );
                break;
            case 2:
                getwindow().setentertransition( new fade(  ) );
                getwindow().setexittransition( new fade(  ) );
                break;
            case 3:
                break;
        }
        setcontentview( r.layout.activity_transition );
    }
}

总结

到此这篇关于android中activity过渡动画的文章就介绍到这了,更多相关android activity过渡动画内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!