Android Activity 界面跳转动画(系统、自定义)

平时我做的界面跳转都是默认的跳转,但是发现有很多app界面跳转很炫酷,我研究了一下,做个笔记,看了下,Android中有几种设置好的跳转方式,我demo中Android自带的跳转方式主要有5种:

默认效果

android.R.anim.fade_in 淡入
android.R.anim.fade_out 淡出
android.R.anim.slide_in_left 左滑
android.R.anim.slide_out_right 右滑

下面直接上代码展示:

这里我是从 MainActivity通过 Intent 跳转到 AfterJumpActivity在 AfterJumpActivity 点击返回时是直接 finish()

MainActivity

  1. import android.content.Intent;
  2. import android.support.v7.app.AppCompatActivity;
  3. import android.os.Bundle;
  4. import android.view.View;
  5. import android.widget.Button;
  6. public class MainActivity extends AppCompatActivity implements View.OnClickListener{
  7. @Override
  8. protected void onCreate(Bundle savedInstanceState) {
  9. super.onCreate(savedInstanceState);
  10. setContentView(R.layout.activity_main);
  11. Button btn_default = findViewById(R.id.btn_default);
  12. Button btn_default1 = findViewById(R.id.btn_default1);
  13. Button btn_default2 = findViewById(R.id.btn_default2);
  14. Button btn_default3 = findViewById(R.id.btn_default3);
  15. Button btn_default4 = findViewById(R.id.btn_default4);
  16. btn_default.setOnClickListener(this);
  17. btn_default1.setOnClickListener(this);
  18. btn_default2.setOnClickListener(this);
  19. btn_default3.setOnClickListener(this);
  20. btn_default4.setOnClickListener(this);
  21. }
  22. @Override
  23. public void onClick(View v) {
  24. switch (v.getId()){
  25. case R.id.btn_default:
  26. startActivity(new Intent(MainActivity.this, AfterJumpActivity.class));
  27. break;
  28. case R.id.btn_default1:
  29. startActivity(new Intent(MainActivity.this, AfterJumpActivity.class));
  30. overridePendingTransition(android.R.anim.fade_in,0);
  31. break;
  32. case R.id.btn_default2:
  33. startActivity(new Intent(MainActivity.this, AfterJumpActivity.class));
  34. overridePendingTransition(android.R.anim.fade_out,0);
  35. break;
  36. case R.id.btn_default3:
  37. startActivity(new Intent(MainActivity.this, AfterJumpActivity.class));
  38. overridePendingTransition(android.R.anim.slide_in_left,0);
  39. break;
  40. case R.id.btn_default4:
  41. startActivity(new Intent(MainActivity.this, AfterJumpActivity.class));
  42. overridePendingTransition(android.R.anim.slide_out_right,0);
  43. break;
  44. }
  45. }
  46. }

activity_main.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools= "http://schemas.android.com/tools"
  4. android:layout_width= "match_parent"
  5. android:layout_height= "match_parent"
  6. android:orientation= "vertical"
  7. tools:context= ".MainActivity">
  8. <Button
  9. android:id= "@+id/btn_default"
  10. android:layout_width= "match_parent"
  11. android:layout_height= "wrap_content"
  12. android:text= "默认效果"/>
  13. <Button
  14. android:id= "@+id/btn_default1"
  15. android:layout_width= "match_parent"
  16. android:layout_height= "wrap_content"
  17. android:text= "淡入"/>
  18. <Button
  19. android:id= "@+id/btn_default2"
  20. android:layout_width= "match_parent"
  21. android:layout_height= "wrap_content"
  22. android:text= "淡出"/>
  23. <Button
  24. android:id= "@+id/btn_default3"
  25. android:layout_width= "match_parent"
  26. android:layout_height= "wrap_content"
  27. android:text= "左滑3"/>
  28. <Button
  29. android:id= "@+id/btn_default4"
  30. android:layout_width= "match_parent"
  31. android:layout_height= "wrap_content"
  32. android:text= "右滑4"/>
  33. </LinearLayout>

 

AfterJumpActivity

  1. import android.support.v7.app.AppCompatActivity;
  2. import android.os.Bundle;
  3. import android.view.View;
  4. import android.widget.Button;
  5. public class AfterJumpActivity extends AppCompatActivity implements View.OnClickListener{
  6. @Override
  7. protected void onCreate(Bundle savedInstanceState) {
  8. super.onCreate(savedInstanceState);
  9. setContentView(R.layout.activity_after_jump);
  10. Button btn_default = findViewById(R.id.btn_default);
  11. Button btn_default1 = findViewById(R.id.btn_default1);
  12. Button btn_default2 = findViewById(R.id.btn_default2);
  13. Button btn_default3 = findViewById(R.id.btn_default3);
  14. Button btn_default4 = findViewById(R.id.btn_default4);
  15. btn_default.setOnClickListener(this);
  16. btn_default1.setOnClickListener(this);
  17. btn_default2.setOnClickListener(this);
  18. btn_default3.setOnClickListener(this);
  19. btn_default4.setOnClickListener(this);
  20. }
  21. @Override
  22. public void onClick(View v) {
  23. switch (v.getId()){
  24. case R.id.btn_default:
  25. finish();
  26. break;
  27. case R.id.btn_default1:
  28. finish();
  29. overridePendingTransition(android.R.anim.fade_in,0);
  30. break;
  31. case R.id.btn_default2:
  32. finish();
  33. overridePendingTransition(android.R.anim.fade_out,0);
  34. break;
  35. case R.id.btn_default3:
  36. finish();
  37. overridePendingTransition(android.R.anim.slide_in_left,0);
  38. break;
  39. case R.id.btn_default4:
  40. finish();
  41. overridePendingTransition(android.R.anim.slide_out_right,0);
  42. break;
  43. }
  44. }
  45. }

 

activity_after_jump.xml

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools= "http://schemas.android.com/tools"
  4. android:layout_width= "match_parent"
  5. android:layout_height= "match_parent"
  6. android:orientation= "vertical"
  7. tools:context= ".AfterJumpActivity">
  8. <Button
  9. android:id= "@+id/btn_default"
  10. android:layout_width= "match_parent"
  11. android:layout_height= "wrap_content"
  12. android:text= "默认效果"/>
  13. <Button
  14. android:id= "@+id/btn_default1"
  15. android:layout_width= "match_parent"
  16. android:layout_height= "wrap_content"
  17. android:text= "淡入返回"/>
  18. <Button
  19. android:id= "@+id/btn_default2"
  20. android:layout_width= "match_parent"
  21. android:layout_height= "wrap_content"
  22. android:text= "淡出返回"/>
  23. <Button
  24. android:id= "@+id/btn_default3"
  25. android:layout_width= "match_parent"
  26. android:layout_height= "wrap_content"
  27. android:text= "左滑返回3"/>
  28. <Button
  29. android:id= "@+id/btn_default4"
  30. android:layout_width= "match_parent"
  31. android:layout_height= "wrap_content"
  32. android:text= "右滑返回4"/>
  33. </LinearLayout>

 

看代码可以看出,主要是用到了 overridePendingTransition(android.R.anim.slide_out_right,0); 方法

  1. /**
  2. * Call immediately after one of the flavors of {@link #startActivity(Intent)}
  3. * or {@link #finish} to specify an explicit transition animation to
  4. * perform next.
  5. *
  6. * <p>As of {@link android.os.Build.VERSION_CODES#JELLY_BEAN} an alternative
  7. * to using this with starting activities is to supply the desired animation
  8. * information through a {@link ActivityOptions} bundle to
  9. * {@link #startActivity(Intent, Bundle)} or a related function. This allows
  10. * you to specify a custom animation even when starting an activity from
  11. * outside the context of the current top activity.
  12. *
  13. * @param enterAnim A resource ID of the animation resource to use for
  14. * the incoming activity. Use 0 for no animation.
  15. * @param exitAnim A resource ID of the animation resource to use for
  16. * the outgoing activity. Use 0 for no animation.
  17. */
  18. public void overridePendingTransition(int enterAnim, int exitAnim) {
  19. try {
  20. ActivityManager.getService().overridePendingTransition(
  21. mToken, getPackageName(), enterAnim, exitAnim);
  22. } catch (RemoteException e) {
  23. }
  24. }

这个方法的两个参数是就是设置跳转的动画效果

第一个参数是指跳转过去时的动画效果参数,第二个参数是指点击系统返回按钮时的动画效果参数

而这个demo中返回时点击的是自定义的按钮,所以也需要调用 overridePendingTransition 方法设置返回时的动画效果

 

demo演示的都是系统自带的动画效果,如果想要更炫酷的效果,就需要自定义跳转动画

在res下面建一个anim文件夹,在这里进行自定义跳转效果,如下

anim_in.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>

anim_out.xml  内部缩小

<?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=".5"
        android:fromYScale="1.0" android:toYScale=".5"
        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>

如果要其他效果可以根据当前的更改参数设置,使用方法也是类似上面的,在demo中也有

case R.id.btn_default5:
    startActivity(new Intent(MainActivity.this, AfterJumpActivity.class));
    overridePendingTransition(R.anim.anim_in,0);
    break;
case R.id.btn_default6:
    startActivity(new Intent(MainActivity.this, AfterJumpActivity.class));
    overridePendingTransition(R.anim.anim_out,0);
    break;

下载demo后自己建个项目将代码复制进去就可以看到效果,很简单的,主要是下图划线部分,这样能完美解决android studio版本不匹配问题

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值