有没有人知道是否可以从终端创建或启动Android模拟器,并将动画比例设置为0,以便我可以自动运行Espresso测试?我可以在'模拟器'文档中找到的唯一命令是禁用启动动画,这实际上没有用。看起来我可以使用:
adb shell settings put system window_animation_scale 0
模拟器启动后,但这似乎并没有实际工作。
Internet上有一些有用的工具可以帮助您。
有3种动画类型。您应该禁用所有这些,如下所示:
DeviceAnimationTestRule
adb shell settings put global window_animation_scale 0.0
adb shell settings put global transition_animation_scale 0.0
更多信息在这里 - adb shell settings put global animator_duration_scale 0.0