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.
如何获得屏幕关闭之前的剩余时间?我不是指超时设置的值,而是屏幕关闭前还剩多少时间(如果用户没有触摸屏幕)。每2-3秒进行一次检查。
您可以使用以下方法获取系统设置的默认屏幕超时:
android.provider.Settings.System.getInt(getContentResolver(),Settings.System.SCREEN_OFF_TIMEOUT,-1);
所以你有默认的超时时间和用户最后一次触摸设备的时间。有了这个,您可以估算屏幕关闭的剩余时间。
虽然我不确定您将如何处理用户对 NotificationBar 的触摸,这将重置超时。