gpt4 book ai didi

android系统动画时长

转载 作者:搜寻专家 更新时间:2023-11-01 07:47:44 25 4
gpt4 key购买 nike

我只是想知道android 系统动画(Activity A 切换到Activity B 的动画)持续时间有多长,我该如何测量这个时间。我应该使用一些工具还是使用代码登录?

最佳答案

Activity 或 fragment 之间的系统动画时间由(在 xml 中)定义:

@android:integer/config_activityShortDur
@android:integer/config_activityDefaultDur

或(在 Java 中):

android.R.integer.config_activityShortDur
android.R.integer.config_activityDefaultDur

来源:

<!-- The duration (in milliseconds) of a short animation. -->
<integer name="config_shortAnimTime">200</integer>

<!-- The duration (in milliseconds) of a medium-length animation. -->
<integer name="config_mediumAnimTime">400</integer>

<!-- The duration (in milliseconds) of a long animation. -->
<integer name="config_longAnimTime">500</integer>

<!-- The duration (in milliseconds) of the activity open/close and fragment open/close animations. -->
<integer name="config_activityShortDur">150</integer>
<integer name="config_activityDefaultDur">220</integer>

关于android系统动画时长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40415215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com