时间:2010-07-26 17:54:29

标签: android animation constants

4 个答案:

答案 0 :(得分:34)

当前值(自3.x起):

  • config_shortAnimTime = 200
  • config_mediumAnimTime = 400
  • config_longAnimTime = 500

活动开启/关闭的持续时间以及片段打开/关闭动画:

  • config_activityShortDur = 150
  • config_activityDefaultDur = 220

答案 1 :(得分:26)

答案 2 :(得分:26)

直接阅读该物业:

getResources().getInteger(android.R.integer.config_shortAnimTime);
getResources().getInteger(android.R.integer.config_mediumAnimTime);
getResources().getInteger(android.R.integer.config_longAnimTime);

答案 3 :(得分:0)

任何使用java代码创建和开始动画的人 动画的默认持续时间为300

public class ValueAnimator extends Animator implements AnimationHandler.AnimationFrameCallback {
    ...
    // How long the animation should last in ms
    private long mDuration = 300;
}