程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> android-Android 跳轉動畫問題

android-Android 跳轉動畫問題

編輯:編程解疑
Android 跳轉動畫問題

@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {

            if (e1.getY() - e2.getY() > FLIP_DISTANCE) {
                Intent intent = new Intent(MainActivity.this, SecondActivity.class);
                overridePendingTransition(R.anim.anim_come ,R.anim.anim_go);
                startActivity(intent);
            }
            return false;
        }

                    anim_come.xml
                    <?xml version="1.0" encoding="utf-8"?>

android:duration="@android:integer/config_longAnimTime"
android:fromYDelta="-100%p"
android:toYDelta="0" />

    anim_go.xml
    <?xml version="1.0" encoding="utf-8"?>

android:duration="@android:integer/config_longAnimTime"
android:fromYDelta="0"
android:toYDelta="100%p" />

    各位版主大神,這樣寫沒有跳轉效果

最佳回答:


overridePendingTransition(R.anim.anim_come ,R.anim.anim_go);
startActivity(intent);這兩句位置換一下

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved