基于阅读的价值window_animation_scale,transition_animation_scale并且animator_duration_scale需要被设置为0
以下适用于API 22,但不适用于API 23:
adb shell settings put global window_animation_scale 0.0
Run Code Online (Sandbox Code Playgroud)
即使是下面的命令也不适用于API 23
adb shell content update --uri content://settings/system --bind value:s:0.0 --where 'name="window_animation_scale"'
Run Code Online (Sandbox Code Playgroud)
我们希望禁用动画以防止仅出现片状视觉测试失败.我们不希望在应用程序中引入此逻辑,因此希望在系统级而不是应用程序中应用它.