【发布时间】:2020-05-26 08:40:48
【问题描述】:
使用 Espresso 在 Android 上测试不同 DayNight 主题的最佳方法是什么? (或更好的东西?)我在互联网上没有找到任何东西。我认为这一定是一件大事,因为现在一切都迁移到了 DayNight。
我想知道诸如“当我点击这个按钮时,我的活动主题是否改变了”或“我有这个背景和这个文本,对比度正确”。
提前致谢。
【问题讨论】:
-
问题的一个方面是通过 Espresso 代码以编程方式确定操作系统设置中是否打开了暗模式。为此,您可以使用
context?.resources?.configuration?.uiMode(来源:stackoverflow.com/questions/44170028/…)确定暗模式状态。
标签: android android-layout android-dark-theme android-darkmode