Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经知道从哪里开始,至少通过 WakeLock 类,但我只能在屏幕上和屏幕外调用方法......我不知道终止屏幕开始启动的最简单方法......(亮度降低在完全关闭之前稍稍)。
谢谢!我希望我已经正确地表达了自己。
知道了!
我对系统类使用了 SCREEN_OF_TIMEOUT 方法。这是代码:
android.provider.Settings.System.putInt(getContentResolver(), Settings.System.SCREEN_OFF_TIMEOUT, 60000);
数字 60000 指的是屏幕超时时间(以毫秒为单位)。谢谢!