答案 0 :(得分:34)
当前值(自3.x起):
活动开启/关闭的持续时间以及片段打开/关闭动画:
答案 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;
}