我想以编程方式获取默认屏幕超时。

我知道如何通过使用以下代码以编程方式设置屏幕超时。

android.provider.Settings.System.putInt(getContentResolver(), Settings.System.SCREEN_OFF_TIMEOUT, <Value for Timeout>);


但是我无法从设置中获取默认屏幕超时。
android - 如何通过编程从设置中获取默认屏幕超时时间?-LMLPHP

最佳答案

您需要使用getInt()

Settings.System.getInt(getContentResolver(),
                Settings.System.SCREEN_OFF_TIMEOUT))


Reference

关于android - 如何通过编程从设置中获取默认屏幕超时时间?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44691810/

10-12 02:25